Add Python 3.7 and 3.8 to Travis (#847)

This commit is contained in:
Gábor Lipták 2020-09-25 13:37:31 -04:00 committed by GitHub
parent f6b3aa6d0f
commit 60b2a7ada5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@ matrix:
# env: BUILD_SYSTEM=cmake C_COMPILER=pgcc CXX_COMPILER=pgc++
###
## Python 2.7 and 3.6 builds on Linux
## Python builds on Linux
###
- os: linux
language: python
@ -122,6 +122,30 @@ matrix:
- gcc-5
- g++-5
- os: linux
language: python
python: 3.7
env: BUILD_SYSTEM=python C_COMPILER=gcc-5 CXX_COMPILER=g++-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
- os: linux
language: python
python: 3.8
env: BUILD_SYSTEM=python C_COMPILER=gcc-5 CXX_COMPILER=g++-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
###
## CMake on OS X
##