Skip to content

Commit 20a91ae

Browse files
committed
Python 3.13.0 has bumped minimum macOS version to macOS 10.13
1 parent eea63b9 commit 20a91ae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/update_python.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
1. Clone cpython
2020
2. Use homebrew to install and configure openssl (for static linking!)
2121
3. Build cpython from source and use `make install` to create archive.
22+
23+
Raspberry Pi Debian 12 (Bookworm):
24+
1. Before calling this script, run "sudo apt install libssl-dev", or otherwise
25+
Python won't be able to use SSL.
2226
"""
2327

2428
import glob
@@ -98,7 +102,7 @@ def build_python():
98102
check_call(['brew', 'install', 'openssl', 'xz', 'pkg-config'])
99103
if platform.machine() == 'x86_64':
100104
prefix = '/usr/local'
101-
min_macos_version = '10.11'
105+
min_macos_version = '10.13'
102106
elif platform.machine() == 'arm64':
103107
prefix = '/opt/homebrew'
104108
min_macos_version = '11.0'

0 commit comments

Comments
 (0)