diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2016-08-26 10:23:07 -0700 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2016-08-26 10:23:07 -0700 |
commit | 615b42f66da4f0e3e6a3516a0d859a7842db5ec4 (patch) | |
tree | 61c3de671d6f0cfbcb842bac8f0c2f880f467d2a /utils | |
parent | c959f9dcf9f4bc0c3dfeb4e68c082c79d479de35 (diff) | |
download | openshift-615b42f66da4f0e3e6a3516a0d859a7842db5ec4.tar.gz openshift-615b42f66da4f0e3e6a3516a0d859a7842db5ec4.tar.bz2 openshift-615b42f66da4f0e3e6a3516a0d859a7842db5ec4.tar.xz openshift-615b42f66da4f0e3e6a3516a0d859a7842db5ec4.zip |
Add missing pip requirement to virtualenv
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile index 7676354b0..ef2928b52 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -45,7 +45,7 @@ virtualenv: virtualenv $(NAME)env . $(NAME)env/bin/activate && pip install -r requirements.txt . $(NAME)env/bin/activate && pip install setuptools --upgrade - . $(NAME)env/bin/activate && pip install enum configparser pylint pep8 nose coverage mock flake8 PyYAML click + . $(NAME)env/bin/activate && pip install enum configparser pylint pep8 nose coverage mock flake8 PyYAML click backports.functools_lru_cache # If there are any special things to install do it here # . $(NAME)env/bin/activate && INSTALL STUFF |