Skip to content

Commit 01967a3

Browse files
committed
Updated supported Python versions to include Python 3.13
1 parent 7c28588 commit 01967a3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SeleniumLibrary_ is a web testing library for `Robot Framework`_ that
1010
utilizes the Selenium_ tool internally. The project is hosted on GitHub_
1111
and downloads can be found from PyPI_.
1212

13-
SeleniumLibrary currently works with Selenium 4. It supports Python 3.8 through 3.12.
13+
SeleniumLibrary currently works with Selenium 4. It supports Python 3.8 through 3.13.
1414
In addition to the normal Python_ interpreter, it works also
1515
with PyPy_.
1616

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
Programming Language :: Python :: 3.10
1919
Programming Language :: Python :: 3.11
2020
Programming Language :: Python :: 3.12
21+
Programming Language :: Python :: 3.13
2122
Programming Language :: Python :: 3 :: Only
2223
Topic :: Software Development :: Testing
2324
Framework :: Robot Framework
@@ -35,14 +36,14 @@
3536
version = VERSION,
3637
description = 'Web testing library for Robot Framework',
3738
long_description = DESCRIPTION,
38-
author = 'Ed Manlove, Yuri Verweij, Lisa Crispin',
39+
author = 'Ed Manlove, Yuri Verweij',
3940
author_email = '[email protected]',
4041
url = 'https://github.com/robotframework/SeleniumLibrary',
4142
license = 'Apache License 2.0',
4243
keywords = 'robotframework testing testautomation selenium webdriver web',
4344
platforms = 'any',
4445
classifiers = CLASSIFIERS,
45-
python_requires = '>=3.8, <3.13',
46+
python_requires = '>=3.8, <3.14',
4647
install_requires = REQUIREMENTS,
4748
package_dir = {'': 'src'},
4849
packages = find_packages('src'),

0 commit comments

Comments
 (0)