From 566fa7c6d0565c86ba8e07a4b91ae04b9b6eb1f6 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 5 Dec 2024 14:33:50 -0700 Subject: [PATCH] Require Python 3.9 in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2aa1321a5d..f2d1cd17a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -772,7 +772,7 @@ if (NOT SED_EXE) endif () endif () -set(ZEEK_PYTHON_MIN 3.5.0) +set(ZEEK_PYTHON_MIN 3.9.0) set(Python_FIND_UNVERSIONED_NAMES FIRST) find_package(Python ${ZEEK_PYTHON_MIN} REQUIRED COMPONENTS Interpreter) find_package(FLEX REQUIRED)