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 6add29d commit 6921989Copy full SHA for 6921989
1 file changed
DEVELOPMENT.md
@@ -191,11 +191,14 @@ source .venv/bin/activate # Linux/macOS
191
# or
192
.venv\Scripts\activate # Windows
193
194
+# Clean dist before building/uploading (avoid non-PyPI artifacts)
195
+rm -f dist/*
196
+
197
# Build
198
python3 setup.py sdist bdist_wheel
199
200
# Upload (twine already installed)
-twine upload dist/*
201
+twine upload dist/*.tar.gz dist/*.whl
202
```
203
204
## GitHub Release
0 commit comments