From 322f9f6e550327e7d3bbb23fad6481690d65ab3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Mon, 12 Aug 2024 11:40:34 +0800 Subject: [PATCH] setup: minimum Python version is 3.11 (StreamWriter.start_tls) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 78b0eb206..f76401ecc 100755 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ import sys import versioneer -if sys.version_info[:2] < (3, 7): - raise Exception("You need Python 3.7+") +if sys.version_info[:2] < (3, 11): + raise Exception("You need Python 3.11+") # Depends on PyQt6, but setuptools cannot check for it.