We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7437ad commit 99fe172Copy full SHA for 99fe172
.github/workflows/pythonpublish.yml
@@ -18,10 +18,13 @@ jobs:
18
python -m pip install --upgrade pip
19
pip install setuptools wheel twine
20
pip install scikit-learn cython
21
+ pip install auditwheel
22
- name: Build and publish
23
env:
24
TWINE_USERNAME: __token__
25
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
26
run: |
27
python setup.py sdist bdist_wheel
- twine upload dist/*
28
+ twine upload dist/*.tar.gz
29
+ auditwheel repair dist/*linux_x86_64.whl
30
+ twine upload wheelhouse/*.whl
0 commit comments