We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20b3149 commit 2f0135eCopy full SHA for 2f0135e
1 file changed
scripts/ci/02-install-python.sh
@@ -3,4 +3,10 @@
3
if [ ! -d "${PYENV_ROOT:?}" ]; then
4
git clone -b "v${PYENV_VERSION:?}" "https://github.com/pyenv/pyenv.git" "${PYENV_ROOT:?}"
5
fi
6
-pyenv install -s "${PYTHON_VERSION:?}"
+
7
+# https://github.com/pyenv/pyenv/issues/3211
8
+if [[ $( sw_vers -productVersion 2>/dev/null ) == 15.* ]]; then
9
+ export PYTHON_BUILD_HOMEBREW_OPENSSL_FORMULA="openssl@3"
10
+fi
11
12
+pyenv install -s "${PYTHON_VERSION:?}"
0 commit comments