From 1e4d9d361e0d0735bb2274e56191505d046f5c9f Mon Sep 17 00:00:00 2001 From: Joaquin Anton Guirao Date: Wed, 30 Oct 2024 14:15:16 +0100 Subject: [PATCH] Add Python 3.31 to CMakeLists.txt and setup.py.in Signed-off-by: Joaquin Anton Guirao --- CMakeLists.txt | 2 +- dali/python/setup.py.in | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c3bb5f6687..ba09b833286 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,7 +194,7 @@ if (NOT BUILD_PYTHON AND PYTHON_VERSIONS) message(WARNING "The BUILD_PYTHON option is set to off and the PYTHON_VERSIONS variable is provided. The latter will be ignored.") elseif (BUILD_PYTHON AND "${PYTHON_VERSIONS}" STREQUAL "") - set(PYTHON_VERSIONS "3.8;3.9;3.10;3.11;3.12") + set(PYTHON_VERSIONS "3.8;3.9;3.10;3.11;3.12;3.13") endif () if (BUILD_PYTHON) diff --git a/dali/python/setup.py.in b/dali/python/setup.py.in index 2c507ce04c5..b6636da194d 100644 --- a/dali/python/setup.py.in +++ b/dali/python/setup.py.in @@ -57,13 +57,14 @@ For more details please check the packages=find_packages(), include_package_data=True, zip_safe=False, - python_requires='>=3.8, <3.13', + python_requires='>=3.8, <3.14', classifiers=[ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ], py_modules = [ 'rec2idx',