mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-12 16:43:11 +00:00
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:
parent
1c7e9d806e
commit
69a566a632
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# required:
|
||||
requests<2.15,>=2.2
|
||||
requests>=2.4
|
||||
pyxdg
|
||||
dnspython
|
||||
# optional:
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue