Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-10-17 14:12:46 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-10-17 14:12:46 +0300
commit9ebf530dc4f5882dc298fe3090d90fb894692ae7 (patch)
tree25070eb76d155a63b3c90fd44d02d8da2696bbca /tools
parent0cf2b5a4bd5f0b469522baa946e6be3346b1d29e (diff)
dev-release: more comments about recent changes
Diffstat (limited to 'tools')
-rwxr-xr-xtools/dev-release.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/dev-release.sh b/tools/dev-release.sh
index 3d6f97202..57f1b8a8e 100755
--- a/tools/dev-release.sh
+++ b/tools/dev-release.sh
@@ -25,10 +25,12 @@ git tag --delete "$tag" || true
tmpvenv=$(mktemp -d)
virtualenv --no-site-packages $tmpvenv
. $tmpvenv/bin/activate
+# update setuptools/pip just like in other places in the repo
pip install -U setuptools
-pip install -U pip
-pip install -U wheel
-# updating virtualenv does some crazy stuff...
+pip install -U pip # latest pip => no --pre for dev releases
+pip install -U wheel # setup.py bdist_wheel newer versions of
+# virtualenv inherit setuptools/pip/wheel versions from current env
+# when creating a child env
pip install -U virtualenv
root="$(mktemp -d -t le.$version.XXX)"