From 1c08c320de3c784e1447ba43f7fed38ba15e6150 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Sun, 20 Oct 2024 16:49:44 +0200 Subject: [PATCH] include Python 3.13 in CI hacks in setup.py (#464) --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index fa050fa5..25a5d988 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ def get_long_description(): 10: "==0.58.1", 11: "==0.58.1", 12: "==0.59.1", + 13: "==0.59.1", }[sys.version_info.minor] if CI and not _32bit else "" @@ -49,6 +50,7 @@ def get_long_description(): 10: "==1.24.4", 11: "==1.24.4", 12: "==1.26.4", + 13: "==1.26.4", }[sys.version_info.minor] if CI else "" @@ -67,6 +69,7 @@ def get_long_description(): 10: "==1.10.1", 11: "==1.10.1", 12: "==1.13.0", + 13: "==1.13.0", }[sys.version_info.minor] if CI and not _32bit else ""