Skip to content

Commit 8ae10d7

Browse files
committed
[py] Update supported Python versions 3.9+
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 27fbc2e commit 8ae10d7

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

py/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,17 +277,17 @@ py_wheel(
277277
"Topic :: Software Development :: Testing",
278278
"Topic :: Software Development :: Libraries",
279279
"Programming Language :: Python",
280-
"Programming Language :: Python :: 3.8",
281280
"Programming Language :: Python :: 3.9",
282281
"Programming Language :: Python :: 3.10",
283282
"Programming Language :: Python :: 3.11",
284283
"Programming Language :: Python :: 3.12",
284+
"Programming Language :: Python :: 3.13",
285285
],
286286
description_file = "README.rst",
287287
distribution = "selenium",
288288
homepage = "https://www.selenium.dev",
289289
license = "Apache 2.0",
290-
python_requires = ">=3.8",
290+
python_requires = ">=3.9",
291291
python_tag = "py3",
292292
requires = [
293293
"urllib3[socks]>=1.26,<3",

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer), as
2424
Supported Python Versions
2525
=========================
2626

27-
* Python 3.8+
27+
* Python 3.9+
2828

2929
Installing
3030
==========

py/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "4.28.0.202411261607"
88
license = { text = "Apache 2.0" }
99
description = "Official Python bindings for Selenium WebDriver."
1010
readme = "README.rst"
11-
requires-python = "~=3.8"
11+
requires-python = "~=3.9"
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",
1414
"Intended Audience :: Developers",
@@ -19,7 +19,6 @@ classifiers = [
1919
"Topic :: Software Development :: Testing",
2020
"Topic :: Software Development :: Libraries",
2121
"Programming Language :: Python",
22-
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",

py/tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ commands =
4747
isort --check-only --diff selenium/ test/ conftest.py
4848
; execute black in check only mode with diff.
4949
black --check --diff selenium/ test/ conftest.py -l 120
50-
flake8 selenium/ test/ --min-python-version=3.8
50+
flake8 selenium/ test/ --min-python-version=3.9
5151
docformatter --check -r selenium/
5252

5353
[testenv:linting]
@@ -64,7 +64,7 @@ deps =
6464
commands =
6565
isort selenium/ test/ conftest.py
6666
black selenium/ test/ conftest.py -l 120
67-
flake8 selenium/ test/ --min-python-version=3.8
67+
flake8 selenium/ test/ --min-python-version=3.9
6868
docformatter --in-place -r selenium/
6969

7070
[flake8]

0 commit comments

Comments
 (0)