update requirements >= version number, not ==

Some libraries (including requests, requests-oauthlib, maybe others) have had new releases. Requiring a specific version in requirements.txt forces uninstallation of newer versions and installation of older ones.
This commit is contained in:
Matt Morrison 2014-08-16 21:34:28 -04:00
parent 54647cf0a9
commit cef13cb1a8

View file

@ -1,6 +1,6 @@
coverage==3.6.0
requests==2.1.0
requests_oauthlib==0.4.0
python-coveralls==2.1.0
nose-cov==1.6
responses==0.2.0
coverage>=3.6.0
requests>=2.1.0
requests_oauthlib>=0.4.0
python-coveralls>=2.1.0
nose-cov>=1.6
responses>=0.2.0