Skip to content

Commit 300f067

Browse files
committed
Update to 3.13.0b2.
1 parent c8abcae commit 300f067

File tree

4 files changed

+4
-148
lines changed

4 files changed

+4
-148
lines changed

cpython-unix/build-cpython.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,6 @@ else
149149
patch -p1 -i ${ROOT}/patch-macos-link-extension-modules.patch
150150
fi
151151

152-
# Header files generated by Argument Clinic in 3.13.0b1 are missing
153-
# an #include directive; PR 119712 corrected this.
154-
# FIXME: remove during update to support 3.13.0b2
155-
if [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" ]; then
156-
patch -p1 -i ${ROOT}/patch-cpython-pr-119712.patch
157-
fi
158-
159152
# Also on macOS, the `python` executable is linked against libraries defined by statically
160153
# linked modules. But those libraries should only get linked into libpython, not the
161154
# executable. This behavior is kinda suspect on all platforms, as it could be adding

cpython-unix/patch-cpython-pr-119712.patch

Lines changed: 0 additions & 138 deletions
This file was deleted.

pythonbuild/downloads.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@
8080
"python_tag": "cp312",
8181
},
8282
"cpython-3.13": {
83-
"url": "https://www.python.org/ftp/python/3.13.0/Python-3.13.0b1.tar.xz",
83+
"url": "https://www.python.org/ftp/python/3.13.0/Python-3.13.0b2.tar.xz",
8484
"size": 21054240,
85-
"sha256": "ba716ac56b039b545ad4a90ce586a57aa97869364553746ef2445728ceec198e",
86-
"version": "3.13.0b1",
85+
"sha256": "bf11be01b42a07a3659e4e233591e03da631b7112aa61ee1e030eeb8c5dfd869",
86+
"version": "3.13.0b2",
8787
"licenses": ["Python-2.0", "CNRI-Python"],
8888
"license_file": "LICENSE.cpython.txt",
8989
"python_tag": "cp313",

src/validation.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_12: &[&str] = &[
718718
"_zoneinfo",
719719
];
720720

721+
// FIXME: ensure that this list is correct for 3.13
721722
const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
722723
"_sha2",
723724
"_tokenize",

0 commit comments

Comments
 (0)