From 19e88c6e68c0e3c0e31f6a8d9f0b6dea944cebc3 Mon Sep 17 00:00:00 2001 From: Tim Hatch Date: Thu, 20 Mar 2025 15:21:26 -0700 Subject: [PATCH] Regenerate with updated 3.13/3.14 Adds `_apple_support`, which is confirmed to be present in homebrew 3.13.2 ``` $ python3.13 Python 3.13.2 (main, Feb 4 2025, 14:51:09) [Clang 16.0.0 (clang-1600.0.26.6)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import _apple_support >>> dir(_apple_support) ['LogStream', 'SystemLog', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'init_streams', 'io', 'sys'] ``` --- stdlibs/py.py | 1 + stdlibs/py3.py | 1 + stdlibs/py313.py | 1 + stdlibs/py314.py | 1 + stdlibs/releases.toml | 12 ++++++------ 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/stdlibs/py.py b/stdlibs/py.py index b423827..71312c3 100644 --- a/stdlibs/py.py +++ b/stdlibs/py.py @@ -112,6 +112,7 @@ "_abcoll", "_aix_support", "_android_support", + "_apple_support", "_ast", "_asyncio", "_bisect", diff --git a/stdlibs/py3.py b/stdlibs/py3.py index 8a8dd15..d56abd3 100644 --- a/stdlibs/py3.py +++ b/stdlibs/py3.py @@ -24,6 +24,7 @@ "_abcoll", "_aix_support", "_android_support", + "_apple_support", "_ast", "_asyncio", "_bisect", diff --git a/stdlibs/py313.py b/stdlibs/py313.py index 0e9fcb5..c139686 100644 --- a/stdlibs/py313.py +++ b/stdlibs/py313.py @@ -16,6 +16,7 @@ "_abc", "_aix_support", "_android_support", + "_apple_support", "_ast", "_asyncio", "_bisect", diff --git a/stdlibs/py314.py b/stdlibs/py314.py index 2af5269..8e9cc54 100644 --- a/stdlibs/py314.py +++ b/stdlibs/py314.py @@ -16,6 +16,7 @@ "_abc", "_aix_support", "_android_support", + "_apple_support", "_ast", "_asyncio", "_bisect", diff --git a/stdlibs/releases.toml b/stdlibs/releases.toml index 898ada1..fdefd99 100644 --- a/stdlibs/releases.toml +++ b/stdlibs/releases.toml @@ -15,9 +15,9 @@ "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.20/Python-3.9.20.tgz" -"3.10" = "https://www.python.org/ftp/python/3.10.15/Python-3.10.15.tgz" -"3.11" = "https://www.python.org/ftp/python/3.11.10/Python-3.11.10.tgz" -"3.12" = "https://www.python.org/ftp/python/3.12.7/Python-3.12.7.tgz" -"3.13" = "https://www.python.org/ftp/python/3.13.0/Python-3.13.0.tgz" -"3.14" = "https://www.python.org/ftp/python/3.14.0/Python-3.14.0a1.tgz" +"3.9" = "https://www.python.org/ftp/python/3.9.21/Python-3.9.21.tgz" +"3.10" = "https://www.python.org/ftp/python/3.10.16/Python-3.10.16.tgz" +"3.11" = "https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tgz" +"3.12" = "https://www.python.org/ftp/python/3.12.9/Python-3.12.9.tgz" +"3.13" = "https://www.python.org/ftp/python/3.13.2/Python-3.13.2.tgz" +"3.14" = "https://www.python.org/ftp/python/3.14.0/Python-3.14.0a6.tgz"