From 81725f092a123e3bae25d04cc04f2e9fd92268da Mon Sep 17 00:00:00 2001 From: Tim Hatch Date: Wed, 25 Feb 2026 15:52:01 -0800 Subject: [PATCH] Regen for 3.15.0a6 with one extractor change --- stdlibs/fetch.py | 2 ++ stdlibs/py.py | 1 + stdlibs/py3.py | 1 + stdlibs/py315.py | 1 + stdlibs/releases.toml | 8 ++++---- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/stdlibs/fetch.py b/stdlibs/fetch.py index 3dc811c..33b327b 100644 --- a/stdlibs/fetch.py +++ b/stdlibs/fetch.py @@ -215,6 +215,8 @@ def regen(version: str) -> Set[str]: s = s.split("=")[1].strip() if s == '"example"': continue # PC/example_nt/example.c <= 3.1 + if s == '"currently ignored"': + continue # Modules/_testcapi/module.c on 3.15a6 if ( (s == '"decimal"' and p.name == "_decimal.c") diff --git a/stdlibs/py.py b/stdlibs/py.py index e99cbeb..955bdc8 100644 --- a/stdlibs/py.py +++ b/stdlibs/py.py @@ -170,6 +170,7 @@ "_lsprof", "_lzma", "_markupbase", + "_math_integer", "_md5", "_msi", "_multibytecodec", diff --git a/stdlibs/py3.py b/stdlibs/py3.py index 983de31..cdc39be 100644 --- a/stdlibs/py3.py +++ b/stdlibs/py3.py @@ -80,6 +80,7 @@ "_lsprof", "_lzma", "_markupbase", + "_math_integer", "_md5", "_msi", "_multibytecodec", diff --git a/stdlibs/py315.py b/stdlibs/py315.py index 8cd5179..9bf4391 100644 --- a/stdlibs/py315.py +++ b/stdlibs/py315.py @@ -62,6 +62,7 @@ "_lsprof", "_lzma", "_markupbase", + "_math_integer", "_md5", "_multibytecodec", "_multiprocessing", diff --git a/stdlibs/releases.toml b/stdlibs/releases.toml index e8b09c5..3ec7d4c 100644 --- a/stdlibs/releases.toml +++ b/stdlibs/releases.toml @@ -15,10 +15,10 @@ "3.6" = "https://www.python.org/ftp/python/3.6.15/Python-3.6.15.tgz" "3.7" = "https://www.python.org/ftp/python/3.7.17/Python-3.7.17.tgz" "3.8" = "https://www.python.org/ftp/python/3.8.20/Python-3.8.20.tgz" -"3.9" = "https://www.python.org/ftp/python/3.9.24/Python-3.9.24.tgz" +"3.9" = "https://www.python.org/ftp/python/3.9.25/Python-3.9.25.tgz" "3.10" = "https://www.python.org/ftp/python/3.10.19/Python-3.10.19.tgz" "3.11" = "https://www.python.org/ftp/python/3.11.14/Python-3.11.14.tgz" "3.12" = "https://www.python.org/ftp/python/3.12.12/Python-3.12.12.tgz" -"3.13" = "https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz" -"3.14" = "https://www.python.org/ftp/python/3.14.0/Python-3.14.0.tgz" -"3.15" = "https://www.python.org/ftp/python/3.15.0/Python-3.15.0a1.tgz" +"3.13" = "https://www.python.org/ftp/python/3.13.12/Python-3.13.12.tgz" +"3.14" = "https://www.python.org/ftp/python/3.14.3/Python-3.14.3.tgz" +"3.15" = "https://www.python.org/ftp/python/3.15.0/Python-3.15.0a6.tgz"