diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2016-08-26 12:25:22 -0700 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2016-08-26 12:25:22 -0700 |
commit | 635dbc0040b691ac3f2d8cec3296ddf58cfd3072 (patch) | |
tree | 79cf64bae82cfa539261b076ef584579d0042e8c /utils | |
parent | 8bbb62c30ce141e4ffef29364a1c61941317835a (diff) | |
download | openshift-635dbc0040b691ac3f2d8cec3296ddf58cfd3072.tar.gz openshift-635dbc0040b691ac3f2d8cec3296ddf58cfd3072.tar.bz2 openshift-635dbc0040b691ac3f2d8cec3296ddf58cfd3072.tar.xz openshift-635dbc0040b691ac3f2d8cec3296ddf58cfd3072.zip |
Try installing setuptools before the rest of the requirements
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 1 | ||||
-rw-r--r-- | utils/requirements.txt | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile index 99787c7c6..f80d3c7ad 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -43,6 +43,7 @@ virtualenv: @echo "# Creating a virtualenv" @echo "#############################################" virtualenv $(NAME)env + . $(NAME)env/bin/activate && pip install setuptools==17.1.1 . $(NAME)env/bin/activate && pip install -r requirements.txt # If there are any special things to install do it here # . $(NAME)env/bin/activate && INSTALL STUFF diff --git a/utils/requirements.txt b/utils/requirements.txt index 02164fb76..f2216a177 100644 --- a/utils/requirements.txt +++ b/utils/requirements.txt @@ -1,4 +1,3 @@ -setuptools==17.1.1 enum configparser pylint |