Skip to content

Commit 89c2769

Browse files
committed
Improve release process documentation
wheel and setuptools may not be preinstalled within a virtual environment and will cause `./setup.py sdist bdist_wheel` to fail with `error: invalid command 'bdist_wheel'`
1 parent 7cb5deb commit 89c2769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ $ tox
488488
- Create release package and upload it to PyPI
489489
```bash
490490
. .venv/bin/activate && \
491-
pip install twine && \
491+
pip install twine wheel setuptools && \
492492
rm -rf dist/ && \
493493
./setup.py sdist bdist_wheel && \
494494
twine upload dist/* && \

0 commit comments

Comments
 (0)