summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Crone <christopher.crone@docker.com>2019-02-20 15:59:13 +0100
committerGitHub <noreply@github.com>2019-02-20 15:59:13 +0100
commita65b3cd758806bd8b51a75c4613d1ae4ad04ec40 (patch)
tree64e32003c84bd1c3f4eeac714a9d4774cdb52d64
parent4813689c9ed91bea8f0ac670ef87cb527ccdf007 (diff)
parentd9ffec400224256cd06dfc6dd71ceb909285aa2d (diff)
Merge pull request #6503 from docker/mac-virtualenv-fix
Force virtualenv version for macOS CI
-rw-r--r--.circleci/config.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index f4e90d6d..08f8c42c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -10,7 +10,7 @@ jobs:
command: ./script/setup/osx
- run:
name: install tox
- command: sudo pip install --upgrade tox==2.1.1
+ command: sudo pip install --upgrade tox==2.1.1 virtualenv==16.2.0
- run:
name: unit tests
command: tox -e py27,py36,py37 -- tests/unit
@@ -22,7 +22,7 @@ jobs:
- checkout
- run:
name: upgrade python tools
- command: sudo pip install --upgrade pip virtualenv
+ command: sudo pip install --upgrade pip virtualenv==16.2.0
- run:
name: setup script
command: DEPLOYMENT_TARGET=10.11 ./script/setup/osx