Skip to content

Commit

Permalink
Updated setup.py with 3.12 support
Browse files Browse the repository at this point in the history
- also cleaned up the github runner
  • Loading branch information
emanlove committed Sep 5, 2024
1 parent f3f4111 commit ff8cfb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
python-version: [3.8, 3.12] # 3.12, pypy-3.9
python-version: [3.8, 3.12] # pypy-3.9
rf-version: [6.1.1, 7.0.1]
selenium-version: [4.20.0, 4.21.0]
browser: [firefox, chrome, headlesschrome] #edge
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Testing
Framework :: Robot Framework
Expand All @@ -41,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.12',
install_requires = REQUIREMENTS,
package_dir = {'': 'src'},
packages = find_packages('src'),
Expand Down

0 comments on commit ff8cfb6

Please sign in to comment.