Skip to content

Commit 119ec4b

Browse files
authored
Merge pull request #3071 from seleniumbase/mostly-dependency-updates
Mostly dependency updates
2 parents 6c1193e + 96f4f00 commit 119ec4b

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

mkdocs_build/requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ regex>=2024.7.24
55
pymdown-extensions>=10.9
66
pipdeptree>=2.23.1
77
python-dateutil>=2.8.2
8-
Markdown==3.6
8+
Markdown==3.7
99
markdown2==2.5.0
1010
MarkupSafe==2.1.5
1111
Jinja2==3.1.4
1212
click==8.1.7
1313
ghp-import==2.1.0
14-
watchdog==4.0.2
14+
watchdog==5.0.0
1515
cairocffi==1.7.1
1616
pathspec==0.12.1
1717
Babel==2.16.0
18-
paginate==0.5.6
18+
paginate==0.5.7
1919
lxml==5.3.0
2020
pyquery==2.0.0
2121
readtime==3.0.0
2222
mkdocs==1.6.0
23-
mkdocs-material==9.5.31
23+
mkdocs-material==9.5.33
2424
mkdocs-exclude-search==0.6.6
2525
mkdocs-simple-hooks==0.1.5
2626
mkdocs-material-extensions==1.3.1

requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ platformdirs>=4.0.0;python_version<"3.8"
1616
platformdirs>=4.2.2;python_version>="3.8"
1717
typing-extensions>=4.12.2;python_version>="3.8"
1818
parse>=1.20.2
19-
parse-type>=0.6.2
19+
parse-type>=0.6.3
2020
pyyaml==6.0.1;python_version<"3.8"
2121
pyyaml>=6.0.2;python_version>="3.8"
2222
six==1.16.0
23-
idna==3.7
23+
idna==3.8
2424
chardet==5.2.0
2525
charset-normalizer==3.3.2
2626
urllib3>=1.26.19,<2;python_version<"3.10"
@@ -36,7 +36,7 @@ trio-websocket==0.11.1
3636
wsproto==1.2.0
3737
websocket-client==1.8.0;python_version>="3.8"
3838
selenium==4.11.2;python_version<"3.8"
39-
selenium==4.23.1;python_version>="3.8"
39+
selenium==4.24.0;python_version>="3.8"
4040
cssselect==1.2.0
4141
sortedcontainers==2.4.0
4242
fasteners==0.19
@@ -60,7 +60,7 @@ parameterized==0.9.0
6060
sbvirtualdisplay==1.3.0
6161
behave==1.2.6
6262
soupsieve==2.4.1;python_version<"3.8"
63-
soupsieve==2.5;python_version>="3.8"
63+
soupsieve==2.6;python_version>="3.8"
6464
beautifulsoup4==4.12.3
6565
pygments==2.17.2;python_version<"3.8"
6666
pygments==2.18.0;python_version>="3.8"
@@ -73,7 +73,7 @@ python-xlib==0.33;platform_system=="Linux"
7373
markdown-it-py==2.2.0;python_version<"3.8"
7474
markdown-it-py==3.0.0;python_version>="3.8"
7575
mdurl==0.1.2
76-
rich==13.7.1
76+
rich==13.8.0
7777

7878
# --- Testing Requirements --- #
7979
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.29.9"
2+
__version__ = "4.30.0"

seleniumbase/fixtures/base_case.py

+1
Original file line numberDiff line numberDiff line change
@@ -6759,6 +6759,7 @@ def assert_no_404_errors(self, multithreaded=True, timeout=None):
67596759
for link in all_links:
67606760
if (
67616761
"data:" not in link
6762+
and "tel:" not in link
67626763
and "mailto:" not in link
67636764
and "javascript:" not in link
67646765
and "://fonts.gstatic.com" not in link

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@
164164
'platformdirs>=4.2.2;python_version>="3.8"',
165165
'typing-extensions>=4.12.2;python_version>="3.8"',
166166
'parse>=1.20.2',
167-
'parse-type>=0.6.2',
167+
'parse-type>=0.6.3',
168168
'pyyaml==6.0.1;python_version<"3.8"',
169169
'pyyaml>=6.0.2;python_version>="3.8"',
170170
"six==1.16.0",
171-
"idna==3.7",
171+
"idna==3.8",
172172
'chardet==5.2.0',
173173
'charset-normalizer==3.3.2',
174174
'urllib3>=1.26.19,<2;python_version<"3.10"',
@@ -184,7 +184,7 @@
184184
'wsproto==1.2.0',
185185
'websocket-client==1.8.0;python_version>="3.8"',
186186
'selenium==4.11.2;python_version<"3.8"',
187-
'selenium==4.23.1;python_version>="3.8"',
187+
'selenium==4.24.0;python_version>="3.8"',
188188
'cssselect==1.2.0',
189189
"sortedcontainers==2.4.0",
190190
'fasteners==0.19',
@@ -208,7 +208,7 @@
208208
"sbvirtualdisplay==1.3.0",
209209
"behave==1.2.6",
210210
'soupsieve==2.4.1;python_version<"3.8"',
211-
'soupsieve==2.5;python_version>="3.8"',
211+
'soupsieve==2.6;python_version>="3.8"',
212212
"beautifulsoup4==4.12.3",
213213
'pygments==2.17.2;python_version<"3.8"',
214214
'pygments==2.18.0;python_version>="3.8"',
@@ -221,7 +221,7 @@
221221
'markdown-it-py==2.2.0;python_version<"3.8"',
222222
'markdown-it-py==3.0.0;python_version>="3.8"',
223223
'mdurl==0.1.2',
224-
'rich==13.7.1',
224+
'rich==13.8.0',
225225
],
226226
extras_require={
227227
# pip install -e .[allure]
@@ -302,6 +302,7 @@
302302
"selenium-wire": [
303303
'selenium-wire==5.1.0',
304304
'pyOpenSSL==24.2.1',
305+
'pyparsing>=3.1.4',
305306
'Brotli==1.1.0',
306307
'blinker==1.7.0', # Newer ones had issues
307308
'h2==4.1.0',

0 commit comments

Comments
 (0)