Remove Python 3.5 from CI

This commit is contained in:
Liam Newman 2020-07-07 19:29:44 -07:00
parent d9b176cf0b
commit 0b6d322997
2 changed files with 2 additions and 6 deletions

View File

@ -42,8 +42,8 @@ jobs:
Python27_Node8:
python.version: '2.7'
node_version: 8.x
Python35_Node10:
python.version: '3.5'
Python36_Node10:
python.version: '3.6'
node_version: 10.x
Python37_Node12:
python.version: '3.7'

View File

@ -8,10 +8,6 @@ PYTHON_VERSION="`$PROJECT_DIR/build/$PYTHON_ENV/bin/python --version 2>&1`"
# only run the command on python3
if [ -z "${PYTHON_VERSION##Python 3.*}" ]; then
# Don't run on python 3.5
if [ -z "${PYTHON_VERSION##Python 3.5.*}" ]; then
exit 0
fi
$SCRIPT_DIR/python-dev $@
fi