Skip to content
Snippets Groups Projects
Verified Commit c925801e authored by Lars Bilke's avatar Lars Bilke
Browse files

[cmake] Allow Python 3.11 wheel builds.

parent 7e96be7e
No related branches found
No related tags found
No related merge requests found
......@@ -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 = ""
......
# 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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment