Skip to content

Commit

Permalink
Updated supported Python versions to include Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
emanlove committed Dec 29, 2024
1 parent 7c28588 commit 01967a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SeleniumLibrary_ is a web testing library for `Robot Framework`_ that
utilizes the Selenium_ tool internally. The project is hosted on GitHub_
and downloads can be found from PyPI_.

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

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Testing
Framework :: Robot Framework
Expand All @@ -35,14 +36,14 @@
version = VERSION,
description = 'Web testing library for Robot Framework',
long_description = DESCRIPTION,
author = 'Ed Manlove, Yuri Verweij, Lisa Crispin',
author = 'Ed Manlove, Yuri Verweij',
author_email = '[email protected]',
url = 'https://github.com/robotframework/SeleniumLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation selenium webdriver web',
platforms = 'any',
classifiers = CLASSIFIERS,
python_requires = '>=3.8, <3.13',
python_requires = '>=3.8, <3.14',
install_requires = REQUIREMENTS,
package_dir = {'': 'src'},
packages = find_packages('src'),
Expand Down

0 comments on commit 01967a3

Please sign in to comment.