From 023415a4405361441b9fd7f9a36dfec03e243ad2 Mon Sep 17 00:00:00 2001 From: Antonio Rojas Date: Sun, 26 Jan 2025 15:49:37 +0100 Subject: [PATCH 1/2] Allow system python 3.13 Fixes archlinux CI --- build/pkgs/python3/spkg-configure.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/pkgs/python3/spkg-configure.m4 b/build/pkgs/python3/spkg-configure.m4 index c6938ea7080..a9433207975 100644 --- a/build/pkgs/python3/spkg-configure.m4 +++ b/build/pkgs/python3/spkg-configure.m4 @@ -1,8 +1,8 @@ SAGE_SPKG_CONFIGURE([python3], [ m4_pushdef([MIN_VERSION], [3.9.0]) m4_pushdef([MIN_NONDEPRECATED_VERSION], [3.9.0]) - m4_pushdef([LT_STABLE_VERSION], [3.13.0]) - m4_pushdef([LT_VERSION], [3.13.0]) + m4_pushdef([LT_STABLE_VERSION], [3.14.0]) + m4_pushdef([LT_VERSION], [3.14.0]) AC_ARG_WITH([python], [AS_HELP_STRING([--with-python=PYTHON3], [Python 3 executable to use for the Sage venv; default: python3])]) From aca1905dd8b735deec586ad980b7b21a2f284b47 Mon Sep 17 00:00:00 2001 From: Antonio Rojas Date: Sun, 26 Jan 2025 18:38:21 +0100 Subject: [PATCH 2/2] Allow Python 3.13 for sage-setup --- pkgs/sage-setup/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/sage-setup/pyproject.toml b/pkgs/sage-setup/pyproject.toml index a8cac2c6a64..820da4fbbeb 100644 --- a/pkgs/sage-setup/pyproject.toml +++ b/pkgs/sage-setup/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Mathematics", ] urls = {Homepage = "https://www.sagemath.org"} -requires-python = ">=3.9, <3.13" +requires-python = ">=3.9, <3.14" dependencies = [] dynamic = ["version"]