We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3510503 commit 86675e7Copy full SHA for 86675e7
1 file changed
.github/workflows/publish-to-pypi.yml
@@ -9,17 +9,17 @@ jobs:
9
name: Builds and publishes releases to PyPI
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@master
+ - uses: actions/checkout@v6
13
- name: Set up Python 3.13
14
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v6
15
with:
16
python-version: 3.13
17
- - name: Install wheel
+ - name: Install build
18
run: >-
19
- pip install wheel
+ pip install build
20
- name: Build
21
22
- python3 setup.py sdist bdist_wheel
+ python3 -m build
23
- name: Publish release to PyPI
24
uses: pypa/gh-action-pypi-publish@master
25
0 commit comments