From 2cd10145cdb80e0b1894399f0ec48a93bc229fa2 Mon Sep 17 00:00:00 2001 From: Matt Faltyn Date: Wed, 15 Jul 2026 10:02:28 +0200 Subject: [PATCH] Require Python 3.11 in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9409d7b76..2d5fe1da6 100644 --- a/setup.py +++ b/setup.py @@ -18,8 +18,8 @@ import sys -if sys.version_info < (3, 10): - print('Python >= 3.10 is required to build') +if sys.version_info < (3, 11): + print('Python >= 3.11 is required to build') sys.exit(1) # Import setuptools before distutils because setuptools monkey patches