mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Increase minimum Requests version to 2.19
With Python 3.7 and Requests 2.4.0 on Ubuntu 20.04 there are two test failures; reasons not immediately clear. There is a warning for the use of ABCs from collections and not collections.abc. That will cause an exception on Python 3.10 and is fixed in Requests 2.19.0.
This commit is contained in:
parent
f489660925
commit
f35448f8ef
3 changed files with 3 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ classifiers = [
|
|||
requires-python = ">=3.7"
|
||||
|
||||
dependencies = [
|
||||
"requests >= 2.4",
|
||||
"requests >= 2.19",
|
||||
"dnspython >= 2.0",
|
||||
"beautifulsoup4 >= 4.8.1",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# required:
|
||||
beautifulsoup4 == 4.8.1
|
||||
requests == 2.4.0
|
||||
requests == 2.19.0
|
||||
dnspython == 2.0.0
|
||||
# optional:
|
||||
argcomplete == 1.8.1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# required:
|
||||
beautifulsoup4 >= 4.8.1
|
||||
requests >= 2.4
|
||||
requests >= 2.19
|
||||
dnspython >= 2.0
|
||||
# optional:
|
||||
argcomplete >= 1.8.1
|
||||
|
|
|
|||
Loading…
Reference in a new issue