Skip to content

Commit 2c0ef1c

Browse files
committed
Refresh Python dependencies
1 parent c0949e3 commit 2c0ef1c

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ trio==0.27.0;python_version<"3.9"
4646
trio>=0.31.0,<1;python_version>="3.9"
4747
trio-websocket~=0.12.2
4848
wsproto==1.2.0
49-
websocket-client~=1.8.0
49+
websocket-client~=1.8.0;python_version<"3.9"
50+
websocket-client~=1.9.0;python_version>="3.9"
5051
selenium==4.27.1;python_version<"3.9"
5152
selenium==4.32.0;python_version>="3.9" and python_version<"3.10"
5253
selenium==4.36.0;python_version>="3.10"
@@ -73,6 +74,7 @@ soupsieve~=2.8;python_version>="3.9"
7374
beautifulsoup4~=4.14.2
7475
pyotp==2.9.0
7576
python-xlib==0.33;platform_system=="Linux"
77+
PyAutoGUI>=0.9.54;platform_system=="Linux"
7678
markdown-it-py==3.0.0;python_version<"3.10"
7779
markdown-it-py==4.0.0;python_version>="3.10"
7880
mdurl==0.1.2

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@
193193
'trio>=0.31.0,<1;python_version>="3.9"',
194194
'trio-websocket~=0.12.2',
195195
'wsproto==1.2.0',
196-
'websocket-client~=1.8.0',
196+
'websocket-client~=1.8.0;python_version<"3.9"',
197+
'websocket-client~=1.9.0;python_version>="3.9"',
197198
'selenium==4.27.1;python_version<"3.9"',
198199
'selenium==4.32.0;python_version>="3.9" and python_version<"3.10"',
199200
'selenium==4.36.0;python_version>="3.10"',
@@ -220,6 +221,7 @@
220221
"beautifulsoup4~=4.14.2",
221222
'pyotp==2.9.0',
222223
'python-xlib==0.33;platform_system=="Linux"',
224+
'PyAutoGUI>=0.9.54;platform_system=="Linux"',
223225
'markdown-it-py==3.0.0;python_version<"3.10"',
224226
'markdown-it-py==4.0.0;python_version>="3.10"',
225227
'mdurl==0.1.2',
@@ -300,8 +302,9 @@
300302
"psutil==7.1.0",
301303
],
302304
# pip install -e .[pyautogui]
305+
# (Already a required dependency on Linux now.)
303306
"pyautogui": [
304-
"PyAutoGUI==0.9.54",
307+
'PyAutoGUI>=0.9.54;platform_system!="Linux"',
305308
],
306309
# pip install -e .[selenium-stealth]
307310
"selenium-stealth": [
@@ -310,7 +313,7 @@
310313
# pip install -e .[selenium-wire]
311314
"selenium-wire": [
312315
'selenium-wire==5.1.0',
313-
'pyOpenSSL==24.2.1',
316+
'pyOpenSSL>=24.2.1',
314317
'pyparsing>=3.1.4',
315318
'Brotli==1.1.0',
316319
'blinker==1.7.0', # Newer ones had issues
@@ -319,7 +322,7 @@
319322
'hyperframe==6.0.1',
320323
'kaitaistruct==0.10',
321324
'pyasn1==0.6.1',
322-
'zstandard==0.23.0',
325+
'zstandard>=0.23.0',
323326
],
324327
},
325328
packages=[

0 commit comments

Comments
 (0)