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 4fec90d commit 10775c7Copy full SHA for 10775c7
.github/workflows/setup.yml
@@ -25,7 +25,15 @@ jobs:
25
- name: build sdist
26
run: uv build
27
- name: twine
28
- run: twine check dist/*
+ run: uvx twine check dist/*
29
+ - name: pydistcheck
30
+ run: uvx pydistcheck --inspect dist/*
31
+ - name: pyroma
32
+ run: uvx pyroma dist/*.tar.gz
33
+ - name: check-wheel-contents
34
+ run: uvx check-wheel-contents dist/*.whl
35
+ - name: check-manifest
36
+ run: uvx check-manifest -v
37
38
- uses: actions/upload-artifact@v4
39
with:
pyproject.toml
@@ -45,7 +45,6 @@ lint = [
45
"pre-commit==4.0.1"
46
]
47
test = [
48
- "twine==6.0.1"
49
50
types = [
51
"mypy==1.13.0",
0 commit comments