Skip to content

Commit 9d68fff

Browse files
Fix before install to know about python 3.8
1 parent 038e279 commit 9d68fff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/before_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ echo $TRAVIS_OS_NAME
1212

1313
# Find the latest requested version of python
1414
case "$TOXENV" in
15-
py34)
16-
python_minor=4;;
1715
py35)
1816
python_minor=5;;
1917
py36)
@@ -24,6 +22,8 @@ echo $TRAVIS_OS_NAME
2422
python_minor=6;;
2523
py37)
2624
python_minor=7;;
25+
py38)
26+
python_minor=8;;
2727
esac
2828
latest_version=`pyenv install --list | grep -e "^[ ]*3\.$python_minor" | tail -1`
2929

0 commit comments

Comments
 (0)