Skip to content

Commit 2119d35

Browse files
authored
Regenerate with updated 3.13/3.14 (#143)
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'] ```
1 parent 98c61c1 commit 2119d35

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

Diff for: stdlibs/py.py

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
"_abcoll",
113113
"_aix_support",
114114
"_android_support",
115+
"_apple_support",
115116
"_ast",
116117
"_asyncio",
117118
"_bisect",

Diff for: stdlibs/py3.py

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"_abcoll",
2525
"_aix_support",
2626
"_android_support",
27+
"_apple_support",
2728
"_ast",
2829
"_asyncio",
2930
"_bisect",

Diff for: stdlibs/py313.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"_abc",
1717
"_aix_support",
1818
"_android_support",
19+
"_apple_support",
1920
"_ast",
2021
"_asyncio",
2122
"_bisect",

Diff for: stdlibs/py314.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"_abc",
1717
"_aix_support",
1818
"_android_support",
19+
"_apple_support",
1920
"_ast",
2021
"_asyncio",
2122
"_bisect",

Diff for: stdlibs/releases.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"3.6" = "https://www.python.org/ftp/python/3.6.15/Python-3.6.15.tgz"
1616
"3.7" = "https://www.python.org/ftp/python/3.7.17/Python-3.7.17.tgz"
1717
"3.8" = "https://www.python.org/ftp/python/3.8.20/Python-3.8.20.tgz"
18-
"3.9" = "https://www.python.org/ftp/python/3.9.20/Python-3.9.20.tgz"
19-
"3.10" = "https://www.python.org/ftp/python/3.10.15/Python-3.10.15.tgz"
20-
"3.11" = "https://www.python.org/ftp/python/3.11.10/Python-3.11.10.tgz"
21-
"3.12" = "https://www.python.org/ftp/python/3.12.7/Python-3.12.7.tgz"
22-
"3.13" = "https://www.python.org/ftp/python/3.13.0/Python-3.13.0.tgz"
23-
"3.14" = "https://www.python.org/ftp/python/3.14.0/Python-3.14.0a1.tgz"
18+
"3.9" = "https://www.python.org/ftp/python/3.9.21/Python-3.9.21.tgz"
19+
"3.10" = "https://www.python.org/ftp/python/3.10.16/Python-3.10.16.tgz"
20+
"3.11" = "https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tgz"
21+
"3.12" = "https://www.python.org/ftp/python/3.12.9/Python-3.12.9.tgz"
22+
"3.13" = "https://www.python.org/ftp/python/3.13.2/Python-3.13.2.tgz"
23+
"3.14" = "https://www.python.org/ftp/python/3.14.0/Python-3.14.0a6.tgz"

0 commit comments

Comments
 (0)