Merge pull request #147 from fd0/fix-requirements

Require requests >= 2.4
This commit is contained in:
anarcat 2018-04-15 13:28:18 -04:00 committed by GitHub
commit 268bf162c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# required:
requests<2.15,>=2.2
requests<2.15,>=2.4
pyxdg
dnspython
# optional:

View file

@ -501,7 +501,7 @@ args = dict(
},
# Requirements, usable with setuptools or the new Python packaging module.
install_requires = [
'requests<2.15,>=2.2',
'requests<2.15,>=2.4',
'dnspython',
'pyxdg',
],