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 d730322 commit 1bd00b3Copy full SHA for 1bd00b3
.github/workflows/pypi-release.yml
@@ -15,12 +15,12 @@ jobs:
15
- name: Install Tools
16
run: |
17
python -m pip install --upgrade pip
18
- pip install setuptools wheel twine
+ pip install build packaging setuptools wheel twine
19
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
20
- name: Build and Publish
21
env:
22
TWINE_USERNAME: __token__
23
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
24
25
- python setup.py sdist bdist_wheel
+ python3 -m build --wheel --no-isolation
26
twine upload dist/*
0 commit comments