Skip to content

Commit

Permalink
Update to 3.13.0b2.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming authored and zanieb committed Jun 6, 2024
1 parent fbbe76a commit 5cf24a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 148 deletions.
7 changes: 0 additions & 7 deletions cpython-unix/build-cpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,6 @@ else
patch -p1 -i ${ROOT}/patch-macos-link-extension-modules.patch
fi

# Header files generated by Argument Clinic in 3.13.0b1 are missing
# an #include directive; PR 119712 corrected this.
# FIXME: remove during update to support 3.13.0b2
if [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" ]; then
patch -p1 -i ${ROOT}/patch-cpython-pr-119712.patch
fi

# Also on macOS, the `python` executable is linked against libraries defined by statically
# linked modules. But those libraries should only get linked into libpython, not the
# executable. This behavior is kinda suspect on all platforms, as it could be adding
Expand Down
138 changes: 0 additions & 138 deletions cpython-unix/patch-cpython-pr-119712.patch

This file was deleted.

6 changes: 3 additions & 3 deletions pythonbuild/downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
"python_tag": "cp312",
},
"cpython-3.13": {
"url": "https://www.python.org/ftp/python/3.13.0/Python-3.13.0b1.tar.xz",
"url": "https://www.python.org/ftp/python/3.13.0/Python-3.13.0b2.tar.xz",
"size": 21054240,
"sha256": "ba716ac56b039b545ad4a90ce586a57aa97869364553746ef2445728ceec198e",
"version": "3.13.0b1",
"sha256": "bf11be01b42a07a3659e4e233591e03da631b7112aa61ee1e030eeb8c5dfd869",
"version": "3.13.0b2",
"licenses": ["Python-2.0", "CNRI-Python"],
"license_file": "LICENSE.cpython.txt",
"python_tag": "cp313",
Expand Down
1 change: 1 addition & 0 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_12: &[&str] = &[
"_zoneinfo",
];

// FIXME: ensure that this list is correct for 3.13
const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
"_interpchannels",
"_interpqueues",
Expand Down

0 comments on commit 5cf24a3

Please sign in to comment.