Skip to content

Commit 454f9cb

Browse files
Merge pull request #21 from basler/feature/Prepare_for_0.1.1
Prepare for 0.1.1 release, fixes the PyPI release step condition.
2 parents 11a70be + 12587e1 commit 454f9cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_and_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
files: dist/*
6969

7070
- name: Publish package to PyPI
71-
if: needs.setup.outputs.is_release_build == 'true' && startsWith( matrix.p, 'manylinux' )
71+
if: needs.setup.outputs.is_release_build == 'true'
7272
run: |
73-
sudo pip3 install twine
74-
python3 -m twine upload --non-interactive --skip-existing dist/*
73+
pip install twine
74+
python -m twine upload --non-interactive --skip-existing dist/*
7575
7676
test:
7777
needs: setup

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 0.1.1rc1
1+
Version 0.1.1
22
- Date 2025-09-15
33
- Added CI and changelog, initial release on PyPI
44
- Update README.md

0 commit comments

Comments
 (0)