Skip to content

Commit

Permalink
Add Python 3.31 to CMakeLists.txt and setup.py.in
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquin Anton Guirao <janton@nvidia.com>
  • Loading branch information
jantonguirao committed Oct 30, 2024
1 parent 229a615 commit 1e4d9d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion dali/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 1e4d9d3

Please sign in to comment.