File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55[project ]
66name = " selenium"
77version = " 4.28.0.202411252021"
8- license = " Apache 2.0"
8+ license = { text = " Apache 2.0" }
99description = " Official Python bindings for Selenium WebDriver."
1010readme = " README.rst"
1111requires-python = " ~=3.8"
@@ -24,6 +24,7 @@ classifiers = [
2424 " Programming Language :: Python :: 3.10" ,
2525 " Programming Language :: Python :: 3.11" ,
2626 " Programming Language :: Python :: 3.12" ,
27+ " Programming Language :: Python :: 3.13" ,
2728 ]
2829dependencies = [
2930 " urllib3[socks]>=1.26,<3" ,
@@ -40,7 +41,7 @@ zip-safe = false
4041[tool .setuptools .packages .find ]
4142include = [" selenium*" ]
4243exclude = [" test*" ]
43- namespace = false
44+ namespaces = false
4445# include-package-data is `true` by default in pyproject.toml
4546
4647[project .urls ]
Original file line number Diff line number Diff line change 11[tox]
2- envlist = docs, flake8, isort
2+ envlist = docs, flake8, isort, validate-pyproject
3+
4+ [testenv:validate-pyproject]
5+ skip_install = true
6+ deps =
7+ validate-pyproject ==0.23
8+ packaging ==24.2
9+ commands =
10+ validate-pyproject ./pyproject.toml
311
412[testenv:docs]
513skip_install = true
614deps =
715 -r {toxinidir}/docs/requirements.txt
816 -r {toxinidir}/requirements.txt
917
10- commands =
18+ commands =
1119 ; regenerate autodoc stub pages
1220 sphinx-autogen docs/source/api.rst
13- ; build api docs
21+ ; build api docs
1422 sphinx-build -b html -d ../build/docs/doctrees docs/source ../build/docs/api/py {posargs}
1523setenv =
1624 PYTHONPATH = {toxinidir}/.
You can’t perform that action at this time.
0 commit comments