We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build
1 parent 8f80ac8 commit 78fa00cCopy full SHA for 78fa00c
.github/workflows/ci.yml
@@ -34,4 +34,6 @@ jobs:
34
- name: Run tests
35
run: scripts/test.sh
36
- name: Build package
37
- run: python setup.py clean sdist
+ run: |
38
+ pip install --upgrade setuptools twine build wheel
39
+ python -m build
.github/workflows/pypi.yml
@@ -15,12 +15,11 @@ jobs:
15
python-version: '3.13'
16
- name: Install dependencies
17
run: |
18
- pip install --upgrade pip wheel
19
- pip install setuptools twine
+ pip install --upgrade setuptools twine build wheel pip
20
- name: Build and publish
21
env:
22
TWINE_USERNAME: __token__
23
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
24
25
- python setup.py sdist bdist_wheel
26
twine upload dist/*
0 commit comments