Skip to content

Commit ff8cfb6

Browse files
committed
Updated setup.py with 3.12 support
- also cleaned up the github runner
1 parent f3f4111 commit ff8cfb6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
continue-on-error: true
1010
strategy:
1111
matrix:
12-
python-version: [3.8, 3.12] # 3.12, pypy-3.9
12+
python-version: [3.8, 3.12] # pypy-3.9
1313
rf-version: [6.1.1, 7.0.1]
1414
selenium-version: [4.20.0, 4.21.0]
1515
browser: [firefox, chrome, headlesschrome] #edge

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
Programming Language :: Python :: 3.9
1818
Programming Language :: Python :: 3.10
1919
Programming Language :: Python :: 3.11
20+
Programming Language :: Python :: 3.12
2021
Programming Language :: Python :: 3 :: Only
2122
Topic :: Software Development :: Testing
2223
Framework :: Robot Framework
@@ -41,7 +42,7 @@
4142
keywords = 'robotframework testing testautomation selenium webdriver web',
4243
platforms = 'any',
4344
classifiers = CLASSIFIERS,
44-
python_requires = '>=3.8, <3.12',
45+
python_requires = '>=3.8, <=3.12',
4546
install_requires = REQUIREMENTS,
4647
package_dir = {'': 'src'},
4748
packages = find_packages('src'),

0 commit comments

Comments
 (0)