included python 3.7 and 3.8 in the CI build matrices

This commit is contained in:
Tobias Wellnitz, DH1TW 2019-11-14 17:45:09 +01:00
parent 202bd163cb
commit 21f624c4c7
2 changed files with 12 additions and 3 deletions

View file

@ -18,6 +18,14 @@ environment:
PYTHON_VERSION: "3.6.4"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.5"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.0"
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"

View file

@ -9,7 +9,8 @@ python:
- "3.6-dev" # 3.6 development branch
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.7 development branch
- "3.8"
- "3.8-dev" # 3.8 development branch
- "nightly"
- "pypy"
services:
@ -23,8 +24,8 @@ install:
# run tests
script:
- pytest --cov=./
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then codecov; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then codecov; fi
- cd docs
# build the docs on 2.7 and 3.6 (sphinx requires 2.7 or >=3.4)
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then make html; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then make html; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then make html; fi