Skip to content

Commit

Permalink
Set default OSX_VER to 10.9 from Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Oct 29, 2019
1 parent 160edd7 commit c01cf45
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions osx_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ source $MULTIBUILD_DIR/common_utils.sh
MACPYTHON_URL=https://www.python.org/ftp/python
MACPYTHON_PY_PREFIX=/Library/Frameworks/Python.framework/Versions
MACPYTHON_DEFAULT_OSX="10.6"
if [ "$(lex_ver $MB_PYTHON_VERSION)" -ge "$(lex_ver 3.8)" ]; then
# At 3.8 Python.org dropped the 10.6 installer.
MACPYTHON_DEFAULT_OSX="10.9"
fi
MB_PYTHON_OSX_VER=${MB_PYTHON_OSX_VER:-$MACPYTHON_DEFAULT_OSX}
GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
DOWNLOADS_SDIR=downloads
Expand Down

0 comments on commit c01cf45

Please sign in to comment.