Skip to content

Commit 7e07f81

Browse files
authored
Merge pull request #4338 from seleniumbase/update-config-and-dependencies
Update config and dependencies
2 parents ac638ca + dbf2979 commit 7e07f81

6 files changed

Lines changed: 24 additions & 19 deletions

File tree

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ pymdown-extensions>=10.21.2
66
pipdeptree>=2.35.1
77
python-dateutil>=2.8.2
88
Markdown==3.10.2
9-
click==8.3.1
9+
click==8.3.3
1010
ghp-import==2.1.0
1111
watchdog==6.0.0
1212
cairocffi==1.7.1
13-
pathspec==1.0.4
13+
pathspec==1.1.1
1414
Babel==2.18.0
1515
paginate==0.5.7
1616
mkdocs==1.6.1

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
pip>=26.0.1
2-
packaging>=26.1
1+
pip>=26.0.1;python_version<"3.10"
2+
pip>=26.1;python_version>="3.10"
3+
packaging>=26.2
34
setuptools~=70.2;python_version<"3.10"
45
setuptools>=82.0.1;python_version>="3.10"
5-
wheel>=0.46.3
6+
wheel>=0.47.0
67
attrs>=26.1.0
7-
certifi>=2026.2.25
8+
certifi>=2026.4.22
89
exceptiongroup>=1.3.1
910
websockets~=15.0.1;python_version<"3.10"
1011
websockets>=16.0;python_version>="3.10"
1112
filelock~=3.19.1;python_version<"3.10"
12-
filelock>=3.28.0;python_version>="3.10"
13+
filelock>=3.29.0;python_version>="3.10"
1314
fasteners>=0.20
1415
mycdp>=1.3.7
1516
pynose>=1.5.5
@@ -26,9 +27,9 @@ colorama>=0.4.6
2627
pyyaml>=6.0.3
2728
pygments>=2.20.0
2829
pyreadline3>=3.5.4;platform_system=="Windows"
29-
tabcompleter>=1.4.0
30+
tabcompleter>=1.4.1
3031
pdbp>=1.8.2
31-
idna>=3.11
32+
idna>=3.13
3233
charset-normalizer>=3.4.7,<4
3334
urllib3>=1.26.20,<2;python_version<"3.10"
3435
urllib3>=1.26.20,<3;python_version>="3.10"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.48.2"
2+
__version__ = "4.48.3"

seleniumbase/core/browser_launcher.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2777,6 +2777,8 @@ def _set_chrome_options(
27772777
included_disabled_features.append("OptimizationHintsFetching")
27782778
included_disabled_features.append("Translate")
27792779
included_disabled_features.append("ComponentUpdater")
2780+
included_disabled_features.append("OmniboxUIFeedback")
2781+
included_disabled_features.append("OmniboxPopupShortcut")
27802782
included_disabled_features.append("OptimizationTargetPrediction")
27812783
included_disabled_features.append("OptimizationGuideModelDownloading")
27822784
included_disabled_features.append("DownloadBubble")

seleniumbase/undetected/cdp_driver/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ def __call__(self):
267267
"OptimizationHintsFetching,InterestFeedContentSuggestions,"
268268
"Bluetooth,WebBluetooth,UnifiedWebBluetooth,ComponentUpdater,"
269269
"DisableLoadExtensionCommandLineSwitch,"
270+
"OmniboxUIFeedback,OmniboxPopupShortcut,"
270271
"WebAuthentication,PasskeyAuth"
271272
]
272273
if self.expert:

setup.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -146,18 +146,19 @@
146146
],
147147
python_requires=">=3.9",
148148
install_requires=[
149-
'pip>=26.0.1',
150-
'packaging>=26.1',
149+
'pip>=26.0.1;python_version<"3.10"',
150+
'pip>=26.1;python_version>="3.10"',
151+
'packaging>=26.2',
151152
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
152153
'setuptools>=82.0.1;python_version>="3.10"',
153-
'wheel>=0.46.3',
154+
'wheel>=0.47.0',
154155
'attrs>=26.1.0',
155-
'certifi>=2026.2.25',
156+
'certifi>=2026.4.22',
156157
'exceptiongroup>=1.3.1',
157158
'websockets~=15.0.1;python_version<"3.10"',
158159
'websockets>=16.0;python_version>="3.10"',
159160
'filelock~=3.19.1;python_version<"3.10"',
160-
'filelock>=3.28.0;python_version>="3.10"',
161+
'filelock>=3.29.0;python_version>="3.10"',
161162
'fasteners>=0.20',
162163
'mycdp>=1.3.7',
163164
'pynose>=1.5.5',
@@ -174,9 +175,9 @@
174175
'pyyaml>=6.0.3',
175176
'pygments>=2.20.0',
176177
'pyreadline3>=3.5.4;platform_system=="Windows"',
177-
'tabcompleter>=1.4.0',
178+
'tabcompleter>=1.4.1',
178179
'pdbp>=1.8.2',
179-
'idna>=3.11',
180+
'idna>=3.13',
180181
'charset-normalizer>=3.4.7,<4',
181182
'urllib3>=1.26.20,<2;python_version<"3.10"',
182183
'urllib3>=1.26.20,<3;python_version>="3.10"',
@@ -254,14 +255,14 @@
254255
# pip install -e .[mss]
255256
# (An optional library for tile_windows() in CDP Mode.)
256257
"mss": [
257-
'mss==10.1.0',
258+
'mss==10.2.0',
258259
],
259260
# pip install -e .[pdfminer]
260261
# (An optional library for parsing PDF files.)
261262
"pdfminer": [
262263
'pdfminer.six==20251107;python_version<"3.10"',
263264
'pdfminer.six==20260107;python_version>="3.10"',
264-
'cryptography==46.0.7',
265+
'cryptography==47.0.0',
265266
'cffi==2.0.0',
266267
'pycparser==2.23;python_version<"3.10"',
267268
'pycparser==3.0;python_version>="3.10"',

0 commit comments

Comments
 (0)