Skip to content

Commit f709444

Browse files
committed
Refresh Python dependencies
1 parent 1c234e2 commit f709444

2 files changed

Lines changed: 8 additions & 32 deletions

File tree

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ exceptiongroup>=1.3.1
1010
websockets~=15.0.1;python_version<"3.10"
1111
websockets>=16.0;python_version>="3.10"
1212
filelock~=3.19.1;python_version<"3.10"
13-
filelock>=3.29.0;python_version>="3.10"
13+
filelock>=3.29.1;python_version>="3.10"
1414
fasteners>=0.20
1515
mycdp>=1.3.7
1616
pynose>=1.5.5
@@ -30,7 +30,7 @@ pygments>=2.20.0
3030
pyreadline3>=3.5.4;platform_system=="Windows"
3131
tabcompleter>=1.4.1
3232
pdbp>=1.8.2
33-
idna>=3.17
33+
idna>=3.18
3434
charset-normalizer>=3.4.7,<4
3535
urllib3>=1.26.20,<2;python_version<"3.10"
3636
urllib3>=2.7.0,<3;python_version>="3.10"

setup.py

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
'websockets~=15.0.1;python_version<"3.10"',
174174
'websockets>=16.0;python_version>="3.10"',
175175
'filelock~=3.19.1;python_version<"3.10"',
176-
'filelock>=3.29.0;python_version>="3.10"',
176+
'filelock>=3.29.1;python_version>="3.10"',
177177
'fasteners>=0.20',
178178
'mycdp>=1.3.7',
179179
'pynose>=1.5.5',
@@ -193,7 +193,7 @@
193193
'pyreadline3>=3.5.4;platform_system=="Windows"',
194194
'tabcompleter>=1.4.1',
195195
'pdbp>=1.8.2',
196-
'idna>=3.17',
196+
'idna>=3.18',
197197
'charset-normalizer>=3.4.7,<4',
198198
'urllib3>=1.26.20,<2;python_version<"3.10"',
199199
'urllib3>=2.7.0,<3;python_version>="3.10"',
@@ -243,9 +243,9 @@
243243
# Usage: pytest --alluredir=allure_results
244244
# Serve: allure serve allure_results
245245
"allure": [
246-
'allure-pytest>=2.13.5',
247-
'allure-python-commons>=2.13.5',
248-
'allure-behave>=2.13.5',
246+
'allure-pytest>=2.16.0',
247+
'allure-python-commons>=2.16.0',
248+
'allure-behave>=2.16.0',
249249
],
250250
# pip install -e .[coverage]
251251
# Usage: coverage run -m pytest; coverage html; coverage report
@@ -262,12 +262,6 @@
262262
'pyflakes==3.4.0',
263263
'pycodestyle==2.14.0',
264264
],
265-
# pip install -e .[ipdb]
266-
# (Not needed for debugging anymore. SeleniumBase now includes "pdbp".)
267-
"ipdb": [
268-
"ipdb==0.13.13",
269-
'ipython==7.34.0',
270-
],
271265
# pip install -e .[mss]
272266
# (An optional library for tile_windows() in CDP Mode.)
273267
"mss": [
@@ -293,7 +287,7 @@
293287
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)
294288
# (May help those with corporate self-signed certs on Windows.)
295289
"pip-system-certs": [
296-
'pip-system-certs==4.0;platform_system=="Windows"',
290+
'pip-system-certs>=4.0;platform_system=="Windows"',
297291
],
298292
# pip install -e .[proxy]
299293
# Usage: proxy
@@ -313,24 +307,6 @@
313307
"pyautogui": [
314308
'PyAutoGUI>=0.9.54;platform_system!="Linux"',
315309
],
316-
# pip install -e .[selenium-stealth]
317-
"selenium-stealth": [
318-
'selenium-stealth==1.0.6',
319-
],
320-
# pip install -e .[selenium-wire]
321-
"selenium-wire": [
322-
'selenium-wire==5.1.0',
323-
'pyOpenSSL>=24.2.1',
324-
'pyparsing>=3.1.4',
325-
'Brotli==1.1.0',
326-
'blinker==1.7.0', # Newer ones had issues
327-
'h2==4.1.0',
328-
'hpack==4.0.0',
329-
'hyperframe==6.0.1',
330-
'kaitaistruct==0.10',
331-
'pyasn1==0.6.1',
332-
'zstandard>=0.23.0',
333-
],
334310
},
335311
packages=[
336312
"seleniumbase",

0 commit comments

Comments
 (0)