Require requests >= 2.4

This is already in the code in `linkcheck/__init__.py`, update the
requirements and setup file so it can be installed via `pip`.
This commit is contained in:
Alexander Neumann 2018-04-13 19:22:19 +02:00
parent 1c7e9d806e
commit 69a566a632
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# required:
requests<2.15,>=2.2
requests>=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.4',
'dnspython',
'pyxdg',
],