From 1a06e57b4220a38c2dd71ce8ff96cd66e8d71b91 Mon Sep 17 00:00:00 2001 From: Vishwa Shah Date: Tue, 22 Oct 2024 15:11:48 -0700 Subject: [PATCH] build: update python build versions, add 3.12 and remove 3.8 (#101) build: update python build versions, add 3.12 remove 3.8 --- bindings/python/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/CMakeLists.txt b/bindings/python/CMakeLists.txt index 209335a..808e1a5 100755 --- a/bindings/python/CMakeLists.txt +++ b/bindings/python/CMakeLists.txt @@ -180,12 +180,12 @@ ENDFUNCTION () ### Pybind11 SET (PYBIND11_NOPYTHON ON) -FIND_PACKAGE (pybind11 2.6.0 REQUIRED) +FIND_PACKAGE (pybind11 2.12.0 REQUIRED) ### Python # Python versions to build for and support -SET (PYTHON_SEARCH_VERSIONS 3.8 3.9 3.10 3.11 CACHE STRING "Versions of Python bindings to build.") +SET (PYTHON_SEARCH_VERSIONS 3.9 3.10 3.11 3.12 CACHE STRING "Versions of Python bindings to build.") MESSAGE (STATUS "Looking for available python versions...") FOREACH (PYTHON_VERSION ${PYTHON_SEARCH_VERSIONS})