Refresh Python dependencies

This commit is contained in:
Michael Mintz 2025-01-21 18:28:52 -05:00
parent 28eef66b37
commit c4d2d1ab10
3 changed files with 11 additions and 7 deletions

View File

@ -18,7 +18,7 @@ lxml==5.3.0
pyquery==2.0.1
readtime==3.0.0
mkdocs==1.6.1
mkdocs-material==9.5.49
mkdocs-material==9.5.50
mkdocs-exclude-search==0.6.6
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.3.1

View File

@ -7,8 +7,9 @@ attrs>=24.3.0
certifi>=2024.12.14
exceptiongroup>=1.2.2
websockets~=13.1;python_version<"3.9"
websockets>=14.1;python_version>="3.9"
filelock>=3.16.1
websockets>=14.2;python_version>="3.9"
filelock~=3.16.1;python_version<"3.9"
filelock>=3.17.0;python_version>="3.9"
fasteners>=0.19
mycdp>=1.1.0
pynose>=1.5.3
@ -41,7 +42,8 @@ trio==0.28.0;python_version>="3.9"
trio-websocket==0.11.1
wsproto==1.2.0
websocket-client==1.8.0
selenium==4.27.1
selenium==4.27.1;python_version<"3.9"
selenium==4.28.0;python_version>="3.9"
cssselect==1.2.0
sortedcontainers==2.4.0
execnet==2.1.1

View File

@ -156,8 +156,9 @@ setup(
"certifi>=2024.12.14",
"exceptiongroup>=1.2.2",
'websockets~=13.1;python_version<"3.9"',
'websockets>=14.1;python_version>="3.9"',
'filelock>=3.16.1',
'websockets>=14.2;python_version>="3.9"',
'filelock~=3.16.1;python_version<"3.9"',
'filelock>=3.17.0;python_version>="3.9"',
'fasteners>=0.19',
"mycdp>=1.1.0",
"pynose>=1.5.3",
@ -190,7 +191,8 @@ setup(
'trio-websocket==0.11.1',
'wsproto==1.2.0',
'websocket-client==1.8.0',
'selenium==4.27.1',
'selenium==4.27.1;python_version<"3.9"',
'selenium==4.28.0;python_version>="3.9"',
'cssselect==1.2.0',
"sortedcontainers==2.4.0",
'execnet==2.1.1',