Skip to content

Commit

Permalink
Improve release process documentation
Browse files Browse the repository at this point in the history
wheel may not be preinstalled within a virtual environment and will
cause `./setup.py sdist bdist_wheel` to fail with `error: invalid
command 'bdist_wheel'`
  • Loading branch information
hashhar committed Sep 21, 2022
1 parent 7c27faa commit 485c14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ $ tox
- Create release package and upload it to PyPI
```bash
. .venv/bin/activate && \
pip install twine && \
pip install twine wheel && \
rm -rf dist/ && \
./setup.py sdist bdist_wheel && \
twine upload dist/* && \
Expand Down

0 comments on commit 485c14d

Please sign in to comment.