1
0
mirror of https://github.com/httpie/cli.git synced 2025-12-26 00:31:53 +02:00

v0.3.1: Require Requests < v1.0 due to unsolved compatibility issues.

This commit is contained in:
Jakub Roztocil
2012-12-18 13:45:50 +01:00
parent f7e62336db
commit 753aa69a8a
2 changed files with 4 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ if sys.argv[-1] == 'test':
requirements = [
# Debian has only requests==0.10.1 and httpie.deb depends on that.
'requests>=0.10.1',
'requests>=0.10.1,<1.0',
'Pygments>=1.5'
]
if sys.version_info[:2] in ((2, 6), (3, 1)):