Merge pull request #196 from linkchecker/update-requests

Require a recent Requests version
This commit is contained in:
Marius Gedminas 2018-11-03 15:33:45 +02:00 committed by GitHub
commit 9e8dcf4da8
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.4
requests >= 2.20.0
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.4',
'requests >= 2.20.0',
'dnspython',
'pyxdg',
],