Skip to content

Commit 4e6706a

Browse files
committed
Fix macos Python 3.14 install
1 parent 767e2c4 commit 4e6706a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/scripts/install_python.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ full_version=${versions[$2]}
4848
if [ "$platform" = "macOS" ]; then
4949
echo "Downloading Python installer..."
5050

51-
fname="python-${full_version}-macos11.pkg"
51+
if [ "$version" = "3.14" ];
52+
then
53+
fname="python-${full_version}rc3-macos11.pkg"
54+
else
55+
fname="python-${full_version}-macos11.pkg"
5256
wget "https://www.python.org/ftp/python/${full_version}/${fname}"
5357

5458
echo "Installing Python..."

0 commit comments

Comments
 (0)