Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/releaseWithManylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
build-requirements: 'cython numpy'
- name: Publish wheels to PyPI
run: |
pip install twine --break-system-packages
pip install -U pkginfo packaging twine --break-system-packages
twine upload dist/*-manylinux*.whl
continue-on-error: true

Expand Down Expand Up @@ -69,6 +69,8 @@ jobs:
- name: upload source distribution
run: |
pip install twine
pip install -U pkginfo
pip install -U packaging
twine upload dist/*
continue-on-error: true

Expand Down Expand Up @@ -103,5 +105,7 @@ jobs:
- name: upload wheel
run: |
pip install twine
pip install -U pkginfo
pip install -U packaging
twine upload dist/*
continue-on-error: true
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
version=getVersion(),

# The project's main homepage.
url=URL,
# Author details
Expand Down