diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c3bb5f668..ba09b83328 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 2c507ce04c..b6636da194 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',