From c925801e332dff9e23967d8c90b55227e7b03afb Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Tue, 13 Sep 2022 08:41:36 +0200 Subject: [PATCH] [cmake] Allow Python 3.11 wheel builds. --- pyproject.toml | 2 +- scripts/cmake/PythonSetup.cmake | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 768f363e681..acb60b62466 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ norecursedirs = ["Tests/Data"] [tool.cibuildwheel] archs = "auto64" build = "cp3*" -skip = "*musllinux*" +skip = ["*musllinux*"] test-extras = "test" test-command = "pytest {project}/Tests/Python" # test-command = "" diff --git a/scripts/cmake/PythonSetup.cmake b/scripts/cmake/PythonSetup.cmake index 14ac317021d..ef6be751483 100644 --- a/scripts/cmake/PythonSetup.cmake +++ b/scripts/cmake/PythonSetup.cmake @@ -1,6 +1,9 @@ # cmake-lint: disable=C0103 -set(_python_version_max "...<3.11") +if(OGS_USE_PYTHON) + set(_python_version_max "...<3.11") +endif() + if(OGS_USE_PIP) set(Python_ROOT_DIR ${PROJECT_BINARY_DIR}/.venv) set(CMAKE_REQUIRE_FIND_PACKAGE_Python TRUE) -- GitLab