Unverified Commit 3572e30d authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #180 from radarhere/python

MRG: Updated Python versions

Add 3.7, update 3.6 version.
parents 88e53fd3 c25728a0
...@@ -12,7 +12,7 @@ GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py ...@@ -12,7 +12,7 @@ GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
DOWNLOADS_SDIR=downloads DOWNLOADS_SDIR=downloads
WORKING_SDIR=working WORKING_SDIR=working
# As of 1 May 2018 - latest Python of each version with binary download # As of 28 June 2018 - latest Python of each version with binary download
# available. # available.
# See: https://www.python.org/downloads/mac-osx/ # See: https://www.python.org/downloads/mac-osx/
LATEST_2p7=2.7.15 LATEST_2p7=2.7.15
...@@ -21,7 +21,8 @@ LATEST_3p2=3.2.5 ...@@ -21,7 +21,8 @@ LATEST_3p2=3.2.5
LATEST_3p3=3.3.5 LATEST_3p3=3.3.5
LATEST_3p4=3.4.4 LATEST_3p4=3.4.4
LATEST_3p5=3.5.4 LATEST_3p5=3.5.4
LATEST_3p6=3.6.5 LATEST_3p6=3.6.6
LATEST_3p7=3.7.0
function check_python { function check_python {
...@@ -80,7 +81,9 @@ function fill_pyver { ...@@ -80,7 +81,9 @@ function fill_pyver {
echo $LATEST_2p7 echo $LATEST_2p7
elif [ $ver == "2.6" ]; then elif [ $ver == "2.6" ]; then
echo $LATEST_2p6 echo $LATEST_2p6
elif [ $ver == 3 ] || [ $ver == "3.6" ]; then elif [ $ver == 3 ] || [ $ver == "3.7" ]; then
echo $LATEST_3p7
elif [ $ver == "3.6" ]; then
echo $LATEST_3p6 echo $LATEST_3p6
elif [ $ver == "3.5" ]; then elif [ $ver == "3.5" ]; then
echo $LATEST_3p5 echo $LATEST_3p5
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
[ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest [ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest
[ "$(fill_pyver 2.6)" == $LATEST_2p6 ] || ingest [ "$(fill_pyver 2.6)" == $LATEST_2p6 ] || ingest
[ "$(fill_pyver 2.6.2)" == "2.6.2" ] || ingest [ "$(fill_pyver 2.6.2)" == "2.6.2" ] || ingest
[ "$(fill_pyver 3)" == $LATEST_3p6 ] || ingest [ "$(fill_pyver 3)" == $LATEST_3p7 ] || ingest
[ "$(fill_pyver 3.7)" == $LATEST_3p7 ] || ingest
[ "$(fill_pyver 3.6)" == $LATEST_3p6 ] || ingest [ "$(fill_pyver 3.6)" == $LATEST_3p6 ] || ingest
[ "$(fill_pyver 3.6.0)" == "3.6.0" ] || ingest [ "$(fill_pyver 3.6.0)" == "3.6.0" ] || ingest
[ "$(fill_pyver 3.5)" == $LATEST_3p5 ] || ingest [ "$(fill_pyver 3.5)" == $LATEST_3p5 ] || ingest
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment