From 6fe002a1921c9265e11429db70e2e5522a5140f4 Mon Sep 17 00:00:00 2001 From: Ed Manlove Date: Fri, 3 Oct 2025 20:20:52 -0400 Subject: [PATCH] Allow python version 3.14 --- .github/workflows/CI.yml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c7ea56b17..1ba18d3db 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,7 +9,7 @@ jobs: continue-on-error: true strategy: matrix: - python-version: [3.9.23, 3.13.5] # pypy-3.9 + python-version: [3.9.23, 3.13.5, 3.14.0-rc.3] # pypy-3.9 # python-version: [{earliest: 3.9}, {latest: 3.13.0}] # pypy-3.9 rf-version: [6.1.1, 7.3.2] selenium-version: [4.28.1, 4.29.0, 4.30.0, 4.31.0, 4.32.0, 4.33.0, 4.34.2] diff --git a/setup.py b/setup.py index a60681d30..0faf6569a 100755 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 Programming Language :: Python :: 3.13 +Programming Language :: Python :: 3.14 Programming Language :: Python :: 3 :: Only Topic :: Software Development :: Testing Framework :: Robot Framework @@ -43,7 +44,7 @@ keywords = 'robotframework testing testautomation selenium webdriver web', platforms = 'any', classifiers = CLASSIFIERS, - python_requires = '>=3.8, <3.14', + python_requires = '>=3.8', install_requires = REQUIREMENTS, package_dir = {'': 'src'}, packages = find_packages('src'),