Skip to content

Commit 07c51cd

Browse files
committed
Update patch for v3.11.3.
Includes update to XZ 5.4.2 and OpenSSL 3.1.0.
1 parent 31be2d8 commit 07c51cd

File tree

3 files changed

+139
-141
lines changed

3 files changed

+139
-141
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ BUILD_NUMBER=custom
3939
# PYTHON_VERSION is the full version number (e.g., 3.10.0b3)
4040
# PYTHON_MICRO_VERSION is the full version number, without any alpha/beta/rc suffix. (e.g., 3.10.0)
4141
# PYTHON_VER is the major/minor version (e.g., 3.10)
42-
PYTHON_VERSION=3.11.0
42+
PYTHON_VERSION=3.11.3
4343
PYTHON_MICRO_VERSION=$(shell echo $(PYTHON_VERSION) | grep -Eo "\d+\.\d+\.\d+")
4444
PYTHON_VER=$(basename $(PYTHON_VERSION))
4545

4646
BZIP2_VERSION=1.0.8
4747

48-
XZ_VERSION=5.2.6
48+
XZ_VERSION=5.4.2
4949

5050
# Preference is to use OpenSSL 3; however, Cryptography 3.4.8 (and
5151
# probably some other packages as well) only works with 1.1.1, so
5252
# we need to preserve the ability to build the older OpenSSL (for now...)
53-
OPENSSL_VERSION=3.0.5
53+
OPENSSL_VERSION=3.1.0
5454
# OPENSSL_VERSION_NUMBER=1.1.1
5555
# OPENSSL_REVISION=q
5656
# OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION)
@@ -107,7 +107,7 @@ all: $(OS_LIST)
107107

108108
# Clean all builds
109109
clean:
110-
rm -rf build install merge dist support
110+
rm -rf build install merge dist support wheels
111111

112112
# Full clean - includes all downloaded products
113113
distclean: clean

0 commit comments

Comments
 (0)