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

[cmake] Workaround for Windows issues.

parent 0700b0ba
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@
if(OGS_USE_PYTHON)
set(_python_version_max "...<3.12")
if(WIN32)
# 3.11 crashes at initialization on Windows.
set(_python_version_max "...<3.11")
endif()
endif()
if(OGS_USE_PIP)
......
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