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 f288da1 commit 3334528Copy full SHA for 3334528
.github/workflows/release.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Install dependencies
17
run: |
18
python -m pip install --upgrade pip
19
- pip install setuptools wheel twine
+ pip install build twine
20
- name: Build and publish
21
env:
22
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Makefile
@@ -20,7 +20,7 @@ release-test: sdist
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
sdist: clean
23
- python setup.py sdist bdist_wheel
+ python -m build -d dist .
24
ls -l dist
25
26
test:
0 commit comments