From 3bf8d8ff3443475ea93cf234c99504afbf273a99 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 13 Feb 2025 20:48:28 +0000 Subject: [PATCH] configure: Require Python >= 3.11 This was built against Python 3.11 and I don't know whether if works on previous versions or not. Signed-off-by: Michael Tremer --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e2549819..b7c6d53a 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AC_PROG_MKDIR_P AC_PROG_SED # Python -AM_PATH_PYTHON([3.9]) +AM_PATH_PYTHON([3.11]) # SASS AC_CHECK_PROGS(SASS, [sass]) -- 2.47.2