Skip to content

Commit e04bc33

Browse files
authored
Merge pull request #1950 from emanlove/allow-python-3.14
Allow python version 3.14
2 parents 2eca943 + 6fe002a commit e04bc33

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
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.9.23, 3.13.5] # pypy-3.9
12+
python-version: [3.9.23, 3.13.5, 3.14.0-rc.3] # pypy-3.9
1313
# python-version: [{earliest: 3.9}, {latest: 3.13.0}] # pypy-3.9
1414
rf-version: [6.1.1, 7.3.2]
1515
selenium-version: [4.28.1, 4.29.0, 4.30.0, 4.31.0, 4.32.0, 4.33.0, 4.34.2]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
Programming Language :: Python :: 3.11
2020
Programming Language :: Python :: 3.12
2121
Programming Language :: Python :: 3.13
22+
Programming Language :: Python :: 3.14
2223
Programming Language :: Python :: 3 :: Only
2324
Topic :: Software Development :: Testing
2425
Framework :: Robot Framework
@@ -43,7 +44,7 @@
4344
keywords = 'robotframework testing testautomation selenium webdriver web',
4445
platforms = 'any',
4546
classifiers = CLASSIFIERS,
46-
python_requires = '>=3.8, <3.14',
47+
python_requires = '>=3.8',
4748
install_requires = REQUIREMENTS,
4849
package_dir = {'': 'src'},
4950
packages = find_packages('src'),

0 commit comments

Comments
 (0)