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 974de61 commit 413e669Copy full SHA for 413e669
.github/workflows/publish.yml
@@ -18,11 +18,11 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install matplotlib packaging setuptools twine wheel
+ pip install build twine wheel
22
- name: Publish the Python package
23
env:
24
TWINE_USERNAME: __token__
25
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
26
27
- python setup.py sdist bdist_wheel
+ python -m build --sdist --wheel --outdir dist/ .
28
twine upload dist/*
0 commit comments