From 485c14d231c54848cdf43e16cf6ebfaf7aa5645f Mon Sep 17 00:00:00 2001 From: Ashhar Hasan Date: Wed, 21 Sep 2022 18:24:31 +0530 Subject: [PATCH] Improve release process documentation 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'` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d45c6554..d4ed3040 100644 --- a/README.md +++ b/README.md @@ -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/* && \