Skip to content

Commit

Permalink
ci: fix pypi builds
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 26, 2023
1 parent 978c07a commit 0c8fe2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- uses: actions/setup-python@v3

- name: Build wheels
run: python -m wheel --no-deps -w dist
run: |
pip install wheel
python -m wheel --no-deps -w dist
- name: publish
env:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1.5
- maintenance release
0.1.4
- maintenance release
0.1.3
- maintenance release
0.1.2
Expand Down

0 comments on commit 0c8fe2d

Please sign in to comment.