Compare commits

...

2 commits

Author SHA1 Message Date
Sandon Van Ness
7eee7dfc76 Added pip 1.5 workaround.
Setuptools needs to be upgraded with --no-use-wheel. A change we
already were using in other projects.

Signed-off-by: Sandon Van Ness <sandon@inktank.com>
2014-01-15 18:51:23 -08:00
Yehuda Sadeh
34f429c02b requirements.txt: work around pip 1.4 issue
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
(cherry picked from commit 48ba5dafc4)
2013-07-30 22:15:26 -07:00
2 changed files with 4 additions and 1 deletions

View file

@ -18,6 +18,9 @@ virtualenv --no-site-packages --distribute virtualenv
# avoid pip bugs
./virtualenv/bin/pip install --upgrade pip
# work-around change in pip 1.5
./virtualenv/bin/pip install setuptools --no-use-wheel --upgrade
./virtualenv/bin/pip install -r requirements.txt
# forbid setuptools from using the network because it'll try to use

View file

@ -6,5 +6,5 @@ bunch >=1.0.0
gevent ==0.13.6
isodate >=0.4.4
requests ==0.14.0
pytz
pytz >=2011k
ordereddict