From a3f34704fc51f740e61a54a77f47c3d17ce7e113 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 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'` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d45c6554..c6502885 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 setuptools && \ rm -rf dist/ && \ ./setup.py sdist bdist_wheel && \ twine upload dist/* && \