mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-01 06:10:05 +01:00
included python 3.7 and 3.8 in the CI build matrices
This commit is contained in:
parent
202bd163cb
commit
21f624c4c7
|
|
@ -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%"
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Reference in a new issue