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 8447633 commit 6870602Copy full SHA for 6870602
.github/workflows/release.yml
@@ -26,12 +26,12 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install -U pip
29
- python -m pip install -U setuptools twine wheel
+ python -m pip install -U twine build
30
31
- name: Build package
32
33
python setup.py --version
34
- python setup.py sdist --format=gztar bdist_wheel
+ python -m build
35
twine check dist/*
36
37
- name: Upload packages to Jazzband
pyproject.toml
@@ -0,0 +1,5 @@
1
+[build-system]
2
+requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
3
+build-backend = "setuptools.build_meta"
4
+
5
+[tool.setuptools_scm]
0 commit comments