You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by zm...@apache.org on 2016/02/01 23:08:21 UTC

aurora git commit: Bump virtualenv version for in repo tools.

Repository: aurora
Updated Branches:
  refs/heads/master 6c539fe5a -> 513f4b81b


Bump virtualenv version for in repo tools.

Reviewed at https://reviews.apache.org/r/43066/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/513f4b81
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/513f4b81
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/513f4b81

Branch: refs/heads/master
Commit: 513f4b81b02f38028604840b5dbf67c622c96299
Parents: 6c539fe
Author: Zameer Manji <zm...@apache.org>
Authored: Mon Feb 1 14:08:16 2016 -0800
Committer: Zameer Manji <zm...@apache.org>
Committed: Mon Feb 1 14:08:16 2016 -0800

----------------------------------------------------------------------
 build-support/virtualenv | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/513f4b81/build-support/virtualenv
----------------------------------------------------------------------
diff --git a/build-support/virtualenv b/build-support/virtualenv
index 334653b..fedf697 100755
--- a/build-support/virtualenv
+++ b/build-support/virtualenv
@@ -14,7 +14,7 @@
 #
 # Wrapper for self-bootstrapping virtualenv
 set -ex
-VIRTUALENV_VERSION=12.1.1
+VIRTUALENV_VERSION=14.0.5
 
 if which python2.7 >/dev/null; then
   PY=`which python2.7`
@@ -30,7 +30,6 @@ if ! [ -f "$HERE/virtualenv-$VIRTUALENV_VERSION/BOOTSTRAPPED" ]; then
   pushd "$HERE"
   curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-$VIRTUALENV_VERSION.tar.gz
   tar zxvf virtualenv-$VIRTUALENV_VERSION.tar.gz
-  # TODO(ksweeney): Checksum
   touch virtualenv-$VIRTUALENV_VERSION/BOOTSTRAPPED  # 2PC
   popd
 fi