Skip to content

Commit 1305f0d

Browse files
authored
Merge branch 'SeleniumHQ:trunk' into py-selenium-manager-arm-support
2 parents 063f007 + 0a931d7 commit 1305f0d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ py_wheel(
339339
python_requires = ">=3.9",
340340
python_tag = "py3",
341341
requires = [
342-
"urllib3[socks]~=2.5.0",
342+
"urllib3[socks]>=2.5.0,<3.0",
343343
"trio~=0.30.0",
344344
"trio-websocket~=0.12.2",
345345
"certifi>=2025.6.15",

py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.13",
2727
]
2828
dependencies = [
29-
"urllib3[socks]~=2.5.0",
29+
"urllib3[socks]>=2.5.0,<3.0",
3030
"trio~=0.30.0",
3131
"trio-websocket~=0.12.2",
3232
"certifi>=2025.6.15",

py/selenium/webdriver/common/bidi/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
from typing import Dict, Optional
18+
from typing import Optional
1919

2020
from selenium.webdriver.common.bidi.common import command_builder
2121

@@ -77,7 +77,7 @@ def __init__(
7777
self.file = file
7878
self.prompt = prompt
7979

80-
def to_dict(self) -> Dict[str, str]:
80+
def to_dict(self) -> dict[str, str]:
8181
"""Convert the UserPromptHandler to a dictionary for BiDi protocol.
8282
8383
Returns:

0 commit comments

Comments
 (0)