https://github.com/python/cpython/commit/51f8f44bd0c1747df3e9336914c1866a0513b709 commit: 51f8f44bd0c1747df3e9336914c1866a0513b709 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-10-05T09:09:09+03:00 summary:
[3.14] gh-139573: Update OpenSSL version used in iOS builds (GH-139582) (#139589) gh-139573: Update OpenSSL version used in iOS builds (GH-139582) Update OpenSSL version used in iOS builds. (cherry picked from commit 20758f9bb1c3baa35c6cb44d0074ae488ca9f4d9) Co-authored-by: Russell Keith-Magee <[email protected]> files: M Apple/__main__.py diff --git a/Apple/__main__.py b/Apple/__main__.py index 88b54e91ac84d6..96c2d34fbe0959 100644 --- a/Apple/__main__.py +++ b/Apple/__main__.py @@ -312,11 +312,18 @@ def unpack_deps( On iOS, as a safety mechanism, any dynamic libraries will be purged from the unpacked dependencies. """ + # To create new builds of these dependencies, usually all that's necessary + # is to push a tag to the cpython-apple-source-deps repository, and GitHub + # Actions will do the rest. + # + # If you're a member of the Python core team, and you'd like to be able to + # push these tags yourself, please contact Malcolm Smith or Russell + # Keith-Magee. deps_url = "https://github.com/beeware/cpython-apple-source-deps/releases/download" for name_ver in [ "BZip2-1.0.8-2", "libFFI-3.4.7-2", - "OpenSSL-3.0.17-1", + "OpenSSL-3.0.18-1", "XZ-5.6.4-2", "mpdecimal-4.0.0-2", "zstd-1.5.7-1", _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
