Skip to content

Commit bd425f9

Browse files
Update package version
1 parent 1718089 commit bd425f9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/publish_package.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ jobs:
1818
uses: actions/setup-python@v2
1919
with:
2020
python-version: '3.13'
21-
2221
- name: Install package
23-
run: uv pip install .[dev] --system
22+
run: make install
23+
- name: Build package
24+
run: make
2425
- name: Publish a git tag
2526
run: ".github/publish-git-tag.sh || true"
2627
- name: Build package

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ changelog:
1919
touch changelog_entry.yaml
2020

2121
build-package:
22-
python -m build --sdist
22+
python -m build sdist bdist_wheel
2323

2424
test:
2525
pytest tests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ extend-exclude = '''
6262
| build
6363
| dist
6464
)/
65-
'''
65+
'''

0 commit comments

Comments
 (0)