From dd2c44bd73b239ac0a929902608ec9b526d4bb4e Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 9 Sep 2024 11:30:26 +0800 Subject: [PATCH 1/2] Remove micro version from README note. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index cd395fc..d388d0b 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ Python Apple Support This is a meta-package for building a version of Python that can be embedded into a macOS, iOS, tvOS or watchOS project. -**This branch builds a packaged version of Python 3.13.0rc2**. +**This branch builds a packaged version of Python 3.13**. Other Python versions are available by cloning other branches of the main repository: From d8fdaaec55b845e6e3bfcee9439d4a462c0ab9a6 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 10 Sep 2024 08:04:32 +0800 Subject: [PATCH 2/2] Strip xattrs from macOS bundle before archiving. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f7f1bc2..9aa0e7b 100644 --- a/Makefile +++ b/Makefile @@ -574,6 +574,8 @@ dist/Python-$(PYTHON_VER)-macOS-support.$(BUILD_NUMBER).tar.gz: \ @echo ">>> Create final distribution artefact for macOS" mkdir -p dist + # Strip xattrs from the support files + xattr -cr support/$(PYTHON_VER)/macOS # Build a distributable tarball tar zcvf $$@ -C support/$(PYTHON_VER)/macOS `ls -A support/$(PYTHON_VER)/macOS/`