We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c163ab commit bc4ca71Copy full SHA for bc4ca71
.github/workflows/python-release.yml
@@ -18,15 +18,15 @@ jobs:
18
- name: Setup Python
19
uses: actions/setup-python@v5
20
with:
21
- python-version: "3.x"
+ python-version: "3.10"
22
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
26
- python -m pip install --upgrade setuptools wheel twine
+ python -m pip install --upgrade setuptools build wheel twine
27
- name: Build wheel
28
29
- python setup.py build bdist_wheel
+ python -m build --wheel
30
- name: Publish to PyPI
31
env:
32
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
0 commit comments