Skip to content

Commit

Permalink
Corrected upper bound on Python versions
Browse files Browse the repository at this point in the history
I had it at <=3.12 think this would get any 3.12.x version. But I was
mistaken and this actually blocked this 3.12 compatible version from
being installed under Python 3.12.
  • Loading branch information
emanlove committed Sep 6, 2024
1 parent a72ce46 commit 7bc7943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
keywords = 'robotframework testing testautomation selenium webdriver web',
platforms = 'any',
classifiers = CLASSIFIERS,
python_requires = '>=3.8, <=3.12',
python_requires = '>=3.8, <3.13',
install_requires = REQUIREMENTS,
package_dir = {'': 'src'},
packages = find_packages('src'),
Expand Down

0 comments on commit 7bc7943

Please sign in to comment.