Refresh Python dependencies
This commit is contained in:
parent
8db3eb3eb4
commit
631bcd6a2c
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
regex>=2024.11.6
|
regex>=2024.11.6
|
||||||
pymdown-extensions>=10.14.3
|
pymdown-extensions>=10.14.3
|
||||||
pipdeptree>=2.25.0
|
pipdeptree>=2.25.1
|
||||||
python-dateutil>=2.8.2
|
python-dateutil>=2.8.2
|
||||||
Markdown==3.7
|
Markdown==3.7
|
||||||
click==8.1.8
|
click==8.1.8
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
pip>=25.0.1
|
pip>=25.0.1
|
||||||
packaging>=24.2
|
packaging>=24.2
|
||||||
setuptools~=70.2;python_version<"3.10"
|
setuptools~=70.2;python_version<"3.10"
|
||||||
setuptools>=75.8.2;python_version>="3.10"
|
setuptools>=76.0.0;python_version>="3.10"
|
||||||
wheel>=0.45.1
|
wheel>=0.45.1
|
||||||
attrs>=25.1.0
|
attrs>=25.1.0
|
||||||
certifi>=2025.1.31
|
certifi>=2025.1.31
|
||||||
|
@ -11,7 +11,7 @@ websockets>=15.0.1;python_version>="3.9"
|
||||||
filelock~=3.16.1;python_version<"3.9"
|
filelock~=3.16.1;python_version<"3.9"
|
||||||
filelock>=3.17.0;python_version>="3.9"
|
filelock>=3.17.0;python_version>="3.9"
|
||||||
fasteners>=0.19
|
fasteners>=0.19
|
||||||
mycdp>=1.1.0
|
mycdp>=1.1.1
|
||||||
pynose>=1.5.4
|
pynose>=1.5.4
|
||||||
platformdirs>=4.3.6
|
platformdirs>=4.3.6
|
||||||
typing-extensions>=4.12.2
|
typing-extensions>=4.12.2
|
||||||
|
@ -44,7 +44,8 @@ wsproto==1.2.0
|
||||||
websocket-client==1.8.0
|
websocket-client==1.8.0
|
||||||
selenium==4.27.1;python_version<"3.9"
|
selenium==4.27.1;python_version<"3.9"
|
||||||
selenium==4.29.0;python_version>="3.9"
|
selenium==4.29.0;python_version>="3.9"
|
||||||
cssselect==1.2.0
|
cssselect==1.2.0;python_version<"3.9"
|
||||||
|
cssselect==1.3.0;python_version>="3.9"
|
||||||
sortedcontainers==2.4.0
|
sortedcontainers==2.4.0
|
||||||
execnet==2.1.1
|
execnet==2.1.1
|
||||||
iniconfig==2.0.0
|
iniconfig==2.0.0
|
||||||
|
|
7
setup.py
7
setup.py
|
@ -150,7 +150,7 @@ setup(
|
||||||
'pip>=25.0.1',
|
'pip>=25.0.1',
|
||||||
'packaging>=24.2',
|
'packaging>=24.2',
|
||||||
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
|
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
|
||||||
'setuptools>=75.8.2;python_version>="3.10"',
|
'setuptools>=76.0.0;python_version>="3.10"',
|
||||||
'wheel>=0.45.1',
|
'wheel>=0.45.1',
|
||||||
'attrs>=25.1.0',
|
'attrs>=25.1.0',
|
||||||
"certifi>=2025.1.31",
|
"certifi>=2025.1.31",
|
||||||
|
@ -160,7 +160,7 @@ setup(
|
||||||
'filelock~=3.16.1;python_version<"3.9"',
|
'filelock~=3.16.1;python_version<"3.9"',
|
||||||
'filelock>=3.17.0;python_version>="3.9"',
|
'filelock>=3.17.0;python_version>="3.9"',
|
||||||
'fasteners>=0.19',
|
'fasteners>=0.19',
|
||||||
"mycdp>=1.1.0",
|
"mycdp>=1.1.1",
|
||||||
"pynose>=1.5.4",
|
"pynose>=1.5.4",
|
||||||
'platformdirs>=4.3.6',
|
'platformdirs>=4.3.6',
|
||||||
'typing-extensions>=4.12.2',
|
'typing-extensions>=4.12.2',
|
||||||
|
@ -193,7 +193,8 @@ setup(
|
||||||
'websocket-client==1.8.0',
|
'websocket-client==1.8.0',
|
||||||
'selenium==4.27.1;python_version<"3.9"',
|
'selenium==4.27.1;python_version<"3.9"',
|
||||||
'selenium==4.29.0;python_version>="3.9"',
|
'selenium==4.29.0;python_version>="3.9"',
|
||||||
'cssselect==1.2.0',
|
'cssselect==1.2.0;python_version<"3.9"',
|
||||||
|
'cssselect==1.3.0;python_version>="3.9"',
|
||||||
"sortedcontainers==2.4.0",
|
"sortedcontainers==2.4.0",
|
||||||
'execnet==2.1.1',
|
'execnet==2.1.1',
|
||||||
'iniconfig==2.0.0',
|
'iniconfig==2.0.0',
|
||||||
|
|
Loading…
Reference in New Issue