From ce7cd07de63fdff7e2a0134fb2c266051fb0e006 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Mon, 27 Dec 2021 15:48:30 -0500 Subject: [PATCH] Try dropping py36 on mac again --- ci/buildwheel_macos.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ci/buildwheel_macos.sh b/ci/buildwheel_macos.sh index bd50bbd..97035b1 100755 --- a/ci/buildwheel_macos.sh +++ b/ci/buildwheel_macos.sh @@ -13,12 +13,11 @@ curl -L -o /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py export C_INCLUDE_PATH="/usr/local/include/libpng:/usr/local/opt/openssl/include:$C_INCLUDE_PATH" -PY_VERSIONS=("3.6" "3.7" "3.8" "3.9") +PY_VERSIONS=("3.7" "3.8" "3.9") PKG_URLS=( - "https://www.python.org/ftp/python/3.6.8/python-3.6.8-macosx10.6.pkg" - "https://www.python.org/ftp/python/3.7.5/python-3.7.5-macosx10.6.pkg" - "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" - "https://www.python.org/ftp/python/3.9.9/python-3.9.9-macosx10.9.pkg" + "https://www.python.org/ftp/python/3.7.9/python-3.7.9-macosx10.9.pkg" + "https://www.python.org/ftp/python/3.8.9/python-3.8.9-macosx10.9.pkg" + "https://www.python.org/ftp/python/3.9.4/python-3.9.4-macosx10.9.pkg" ) len=${#PKG_URLS[@]}