We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00d6dd commit 73cb0eeCopy full SHA for 73cb0ee
1 file changed
.github/workflows/pythonpublish.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Install dependencies
17
run: |
18
python -m pip install --upgrade pip
19
- pip install setuptools wheel twine
+ python -m pip install build twine
20
- name: update setup.py
21
22
TAG=${GITHUB_REF#refs/*/}
@@ -27,5 +27,5 @@ jobs:
27
TWINE_USERNAME: __token__
28
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
29
30
- python setup.py sdist bdist_wheel
+ python -m build
31
twine upload dist/*
0 commit comments