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 476d133 commit a87d97aCopy full SHA for a87d97a
.github/workflows/deploy.yml
@@ -15,12 +15,14 @@ jobs:
15
uses: actions/setup-python@v5
16
with:
17
python-version: 3.12
18
- - name: Build wheel and source tarball
+ - name: Install build dependencies
19
run: |
20
- pip install wheel setuptools
21
- python setup.py sdist bdist_wheel
+ python -m pip install --upgrade pip
+ pip install build wheel
22
+ - name: Build package
23
+ run: |
24
+ python -m build
25
- name: Publish a Python distribution to PyPI
- uses: pypa/gh-action-pypi-publish@v1.1.0
26
+ uses: pypa/gh-action-pypi-publish@release/v1
27
- user: __token__
28
password: ${{ secrets.pypi_password }}
0 commit comments