mirror of
https://github.com/nfstream/nfstream.git
synced 2026-05-22 03:03:29 +00:00
Fix armhf wheels.
This commit is contained in:
parent
ee5e7dd906
commit
80df4b6530
2 changed files with 2 additions and 1 deletions
|
|
@ -98,7 +98,6 @@ jobs:
|
|||
uses: codecov/codecov-action@v1
|
||||
|
||||
- name: Publish on Pypi
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
env:
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -91,6 +91,8 @@ try:
|
|||
pypi_compliant_tag[2] = pypi_compliant_tag[2].replace("linux", "manylinux1")
|
||||
if pypi_compliant_tag[2] == "manylinux1_aarch64":
|
||||
pypi_compliant_tag[2] = "manylinux2014_aarch64"
|
||||
if pypi_compliant_tag[2] == "manylinux1_armv7l":
|
||||
pypi_compliant_tag[2] = "manylinux2014_armv7l"
|
||||
pypi_compliant_tag = tuple(pypi_compliant_tag)
|
||||
return pypi_compliant_tag
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue