Skip to content

Commit a37cd3d

Browse files
committed
downloads: upgrade CPython 3.10.0a5 to 3.10.0b4
This required a minor patch to no longer apply a patch against 3.10.
1 parent 53146e7 commit a37cd3d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cpython-unix/build-cpython.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ mv tmp Modules/readline-libedit.c
443443
# Modules/_hashopenssl.c redefines some libcrypto symbols on Python 3.9 and
444444
# this makes the linker unhappy. So rename the symbols to work around.
445445
# https://bugs.python.org/issue41949.
446-
if [ "${PYTHON_MAJMIN_VERSION}" != "3.8" ]; then
446+
if [ "${PYTHON_MAJMIN_VERSION}" = "3.9" ]; then
447447
patch -p1 <<EOF
448448
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
449449
index adc8653773..fc9070fc21 100644

pythonbuild/downloads.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@
7171
"python_tag": "cp39",
7272
},
7373
"cpython-3.10": {
74-
"url": "https://www.python.org/ftp/python/3.10.0/Python-3.10.0a5.tar.xz",
75-
"size": 18286124,
76-
"sha256": "0418e57e7036e219f1e6b6303b21e711f64cfd0fddb0894d8f19f37afffc5d4d",
77-
"version": "3.10.0a5",
74+
"url": "https://www.python.org/ftp/python/3.10.0/Python-3.10.0b4.tar.xz",
75+
"size": 18652712,
76+
"sha256": "27d2f40401144830bd89d632002d1ab7c7898637f098d83e813e3edf70dd3b40",
77+
"version": "3.10.0b4",
7878
"licenses": ["Python-2.0", "CNRI-Python"],
7979
"license_file": "LICENSE.cpython.txt",
8080
"python_tag": "cp310",

0 commit comments

Comments
 (0)