From d8473590e6dfdc52a0ad6d43701a5cfdc2d9f7d2 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 16 Sep 2020 21:06:36 +0200 Subject: [PATCH] Update release instructions --- scripts/dev/update_version.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/dev/update_version.py b/scripts/dev/update_version.py index e86ff257d..7c12dab15 100644 --- a/scripts/dev/update_version.py +++ b/scripts/dev/update_version.py @@ -78,13 +78,12 @@ if __name__ == "__main__": print("* Create new release via GitHub (required to upload release " "artifacts)") print("* Linux: git fetch && git checkout v{v} && " - "./.venv/bin/python3 scripts/dev/build_release.py --upload" + "tox -e build-release -- --upload" .format(v=version)) print("* Windows: git fetch; git checkout v{v}; " - "py -3 scripts\\dev\\build_release.py --asciidoc " - "C:\\Python27\\python " - "$env:userprofile\\bin\\asciidoc-8.6.10\\asciidoc.py --upload" + "py -3.7 -m tox -e build-release -- --asciidoc " + "$env:userprofile\\bin\\asciidoc-9.9.2\\asciidoc.py --upload" .format(v=version)) print("* macOS: git fetch && git checkout v{v} && " - "python3 scripts/dev/build_release.py --upload" + "tox -e build-release -- --upload" .format(v=version))