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.
2 parents f02d1ac + 8154f50 commit e08d210Copy full SHA for e08d210
.github/workflows/release.yml
@@ -18,18 +18,18 @@ jobs:
18
- name: Set up Python
19
uses: actions/setup-python@v4
20
with:
21
- python-version: 3.8
+ python-version: 3.11
22
23
- name: Install dependencies
24
run: |
25
python -m pip install -U pip
26
- python -m pip install -U setuptools twine wheel
+ python -m pip install -U build setuptools setuptools-scm twine
27
28
- name: Build package
29
30
- python setup.py --version
31
- python setup.py sdist --format=gztar bdist_wheel
32
- twine check dist/*
+ python -m setuptools_scm
+ python -m build
+ twine check --strict dist/*
33
34
- name: Upload packages to Jazzband
35
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
0 commit comments