Update Python dependencies
This commit is contained in:
parent
9653442652
commit
e9b6f8fbd8
|
@ -19,7 +19,7 @@ certifi>=2023.5.7
|
||||||
filelock>=3.4.1;python_version<"3.7"
|
filelock>=3.4.1;python_version<"3.7"
|
||||||
filelock>=3.12.2;python_version>="3.7"
|
filelock>=3.12.2;python_version>="3.7"
|
||||||
platformdirs>=2.4.0;python_version<"3.7"
|
platformdirs>=2.4.0;python_version<"3.7"
|
||||||
platformdirs>=3.8.0;python_version>="3.7"
|
platformdirs>=3.8.1;python_version>="3.7"
|
||||||
parse>=1.19.1
|
parse>=1.19.1
|
||||||
parse-type>=0.6.2
|
parse-type>=0.6.2
|
||||||
pyparsing>=3.0.7;python_version<"3.7"
|
pyparsing>=3.0.7;python_version<"3.7"
|
||||||
|
@ -33,14 +33,14 @@ idna==3.4
|
||||||
chardet==4.0.0;python_version<"3.7"
|
chardet==4.0.0;python_version<"3.7"
|
||||||
chardet==5.1.0;python_version>="3.7"
|
chardet==5.1.0;python_version>="3.7"
|
||||||
charset-normalizer==2.0.12;python_version<"3.7"
|
charset-normalizer==2.0.12;python_version<"3.7"
|
||||||
charset-normalizer==3.1.0;python_version>="3.7"
|
charset-normalizer==3.2.0;python_version>="3.7"
|
||||||
urllib3==1.26.12;python_version<"3.7"
|
urllib3==1.26.12;python_version<"3.7"
|
||||||
urllib3>=1.26.16,<2;python_version>="3.7" and python_version<"3.10"
|
urllib3>=1.26.16,<2;python_version>="3.7" and python_version<"3.10"
|
||||||
urllib3>=1.26.16,<2.1.0;python_version>="3.10"
|
urllib3>=1.26.16,<2.1.0;python_version>="3.10"
|
||||||
requests==2.27.1;python_version<"3.7"
|
requests==2.27.1;python_version<"3.7"
|
||||||
requests==2.31.0;python_version>="3.7"
|
requests==2.31.0;python_version>="3.7"
|
||||||
requests-toolbelt==1.0.0
|
requests-toolbelt==1.0.0
|
||||||
pynose==1.4.5
|
pynose==1.4.6
|
||||||
sniffio==1.3.0;python_version>="3.7"
|
sniffio==1.3.0;python_version>="3.7"
|
||||||
h11==0.14.0;python_version>="3.7"
|
h11==0.14.0;python_version>="3.7"
|
||||||
outcome==1.2.0;python_version>="3.7"
|
outcome==1.2.0;python_version>="3.7"
|
||||||
|
@ -56,7 +56,8 @@ cssselect==1.2.0;python_version>="3.7"
|
||||||
sortedcontainers==2.4.0
|
sortedcontainers==2.4.0
|
||||||
fasteners==0.17.3;python_version<"3.7"
|
fasteners==0.17.3;python_version<"3.7"
|
||||||
fasteners==0.18;python_version>="3.7"
|
fasteners==0.18;python_version>="3.7"
|
||||||
execnet==1.9.0
|
execnet==1.9.0;python_version<"3.7"
|
||||||
|
execnet==2.0.0;python_version>="3.7"
|
||||||
iniconfig==1.1.1;python_version<"3.7"
|
iniconfig==1.1.1;python_version<"3.7"
|
||||||
iniconfig==2.0.0;python_version>="3.7"
|
iniconfig==2.0.0;python_version>="3.7"
|
||||||
pluggy==1.0.0;python_version<"3.7"
|
pluggy==1.0.0;python_version<"3.7"
|
||||||
|
@ -65,7 +66,6 @@ py==1.11.0
|
||||||
pytest==7.0.1;python_version<"3.7"
|
pytest==7.0.1;python_version<"3.7"
|
||||||
pytest==7.4.0;python_version>="3.7"
|
pytest==7.4.0;python_version>="3.7"
|
||||||
pytest-forked==1.4.0;python_version<"3.7"
|
pytest-forked==1.4.0;python_version<"3.7"
|
||||||
pytest-forked==1.6.0;python_version>="3.7"
|
|
||||||
pytest-html==2.0.1
|
pytest-html==2.0.1
|
||||||
pytest-metadata==1.11.0;python_version<"3.7"
|
pytest-metadata==1.11.0;python_version<"3.7"
|
||||||
pytest-metadata==3.0.0;python_version>="3.7"
|
pytest-metadata==3.0.0;python_version>="3.7"
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -145,7 +145,7 @@ setup(
|
||||||
'filelock>=3.4.1;python_version<"3.7"',
|
'filelock>=3.4.1;python_version<"3.7"',
|
||||||
'filelock>=3.12.2;python_version>="3.7"',
|
'filelock>=3.12.2;python_version>="3.7"',
|
||||||
'platformdirs>=2.4.0;python_version<"3.7"',
|
'platformdirs>=2.4.0;python_version<"3.7"',
|
||||||
'platformdirs>=3.8.0;python_version>="3.7"',
|
'platformdirs>=3.8.1;python_version>="3.7"',
|
||||||
'parse>=1.19.1',
|
'parse>=1.19.1',
|
||||||
'parse-type>=0.6.2',
|
'parse-type>=0.6.2',
|
||||||
'pyparsing>=3.0.7;python_version<"3.7"',
|
'pyparsing>=3.0.7;python_version<"3.7"',
|
||||||
|
@ -159,14 +159,14 @@ setup(
|
||||||
'chardet==4.0.0;python_version<"3.7"',
|
'chardet==4.0.0;python_version<"3.7"',
|
||||||
'chardet==5.1.0;python_version>="3.7"',
|
'chardet==5.1.0;python_version>="3.7"',
|
||||||
'charset-normalizer==2.0.12;python_version<"3.7"',
|
'charset-normalizer==2.0.12;python_version<"3.7"',
|
||||||
'charset-normalizer==3.1.0;python_version>="3.7"',
|
'charset-normalizer==3.2.0;python_version>="3.7"',
|
||||||
'urllib3==1.26.12;python_version<"3.7"',
|
'urllib3==1.26.12;python_version<"3.7"',
|
||||||
'urllib3>=1.26.16,<2;python_version>="3.7" and python_version<"3.10"', # noqa: E501
|
'urllib3>=1.26.16,<2;python_version>="3.7" and python_version<"3.10"', # noqa: E501
|
||||||
'urllib3>=1.26.16,<2.1.0;python_version>="3.10"',
|
'urllib3>=1.26.16,<2.1.0;python_version>="3.10"',
|
||||||
'requests==2.27.1;python_version<"3.7"',
|
'requests==2.27.1;python_version<"3.7"',
|
||||||
'requests==2.31.0;python_version>="3.7"',
|
'requests==2.31.0;python_version>="3.7"',
|
||||||
'requests-toolbelt==1.0.0',
|
'requests-toolbelt==1.0.0',
|
||||||
"pynose==1.4.5",
|
"pynose==1.4.6",
|
||||||
'sniffio==1.3.0;python_version>="3.7"',
|
'sniffio==1.3.0;python_version>="3.7"',
|
||||||
'h11==0.14.0;python_version>="3.7"',
|
'h11==0.14.0;python_version>="3.7"',
|
||||||
'outcome==1.2.0;python_version>="3.7"',
|
'outcome==1.2.0;python_version>="3.7"',
|
||||||
|
@ -182,7 +182,8 @@ setup(
|
||||||
"sortedcontainers==2.4.0",
|
"sortedcontainers==2.4.0",
|
||||||
'fasteners==0.17.3;python_version<"3.7"',
|
'fasteners==0.17.3;python_version<"3.7"',
|
||||||
'fasteners==0.18;python_version>="3.7"',
|
'fasteners==0.18;python_version>="3.7"',
|
||||||
"execnet==1.9.0",
|
'execnet==1.9.0;python_version<"3.7"',
|
||||||
|
'execnet==2.0.0;python_version>="3.7"',
|
||||||
'iniconfig==1.1.1;python_version<"3.7"',
|
'iniconfig==1.1.1;python_version<"3.7"',
|
||||||
'iniconfig==2.0.0;python_version>="3.7"',
|
'iniconfig==2.0.0;python_version>="3.7"',
|
||||||
'pluggy==1.0.0;python_version<"3.7"',
|
'pluggy==1.0.0;python_version<"3.7"',
|
||||||
|
@ -191,7 +192,6 @@ setup(
|
||||||
'pytest==7.0.1;python_version<"3.7"',
|
'pytest==7.0.1;python_version<"3.7"',
|
||||||
'pytest==7.4.0;python_version>="3.7"',
|
'pytest==7.4.0;python_version>="3.7"',
|
||||||
'pytest-forked==1.4.0;python_version<"3.7"',
|
'pytest-forked==1.4.0;python_version<"3.7"',
|
||||||
'pytest-forked==1.6.0;python_version>="3.7"',
|
|
||||||
"pytest-html==2.0.1", # Newer ones had issues
|
"pytest-html==2.0.1", # Newer ones had issues
|
||||||
'pytest-metadata==1.11.0;python_version<"3.7"',
|
'pytest-metadata==1.11.0;python_version<"3.7"',
|
||||||
'pytest-metadata==3.0.0;python_version>="3.7"',
|
'pytest-metadata==3.0.0;python_version>="3.7"',
|
||||||
|
|
Loading…
Reference in New Issue