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 456228e commit e0d546bCopy full SHA for e0d546b
.github/workflows/release.yml
@@ -34,11 +34,11 @@ jobs:
34
- name: Install dependencies
35
run: |
36
python -m pip install --upgrade pip
37
- pip install setuptools build twine
+ pip install setuptools wheel twine
38
- name: Build and publish
39
env:
40
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
41
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
42
43
- python -m build .
+ python setup.py bdist_wheel
44
twine upload dist/*
0 commit comments