From 7bc794351200261caa56b6bd099739f44996fb93 Mon Sep 17 00:00:00 2001 From: Ed Manlove Date: Fri, 6 Sep 2024 16:13:25 -0400 Subject: [PATCH] Corrected upper bound on Python versions 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 89d86d307..959b31418 100755 --- a/setup.py +++ b/setup.py @@ -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'),