Skip to content

Commit

Permalink
Update Minimum Python Version
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyk02 authored Jun 26, 2024
1 parent 46d1674 commit 1d45280
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ protected void additionalPostProcessingForModes() {

private static String setUpMainTarget(
boolean hasMain, String executableName, Stream<String> cSources) {
String pyVersion = pythonVersion.isEmpty() ? "3.8" : pythonVersion + " EXACT";
String pyVersion = pythonVersion.isEmpty() ? "3.10.0...<3.11.0" : pythonVersion + " EXACT";
return ("""
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
add_compile_definitions(_PYTHON_TARGET_ENABLED)
Expand Down

0 comments on commit 1d45280

Please sign in to comment.