From 54f6ce5dad1a8df2e37be31045fc0b6214428573 Mon Sep 17 00:00:00 2001 From: Lie Ryan Date: Thu, 11 Nov 2021 21:11:12 +1100 Subject: [PATCH] Fix #441. Update release process to use `build` to create wheel package --- docs/release-process.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/release-process.rst b/docs/release-process.rst index cc4d10507..cbde59313 100644 --- a/docs/release-process.rst +++ b/docs/release-process.rst @@ -2,6 +2,6 @@ 2. Update CHANGELOG.md 3. Increment version number in ``rope/__init__.py`` 4. Tag the release with the tag annotation containing the release information, e.g. ``git tag -s 0.21.0`` -5. ``python3 setup.py sdist`` -6. ``twine upload -s dist/rope-$VERSION.tar.gz*`` +5. ``python3 -m build`` +6. ``twine upload -s dist/rope-$VERSION.{tar.gz,whl}`` 7. Publish to Discussions Announcement