From 21f624c4c7665395bd609ad7e08d8cbbfa63e847 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Thu, 14 Nov 2019 17:45:09 +0100 Subject: [PATCH] included python 3.7 and 3.8 in the CI build matrices --- .appveyor.yml | 8 ++++++++ .travis.yml | 7 ++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 1994db5..bfd27c9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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%" diff --git a/.travis.yml b/.travis.yml index 65a50c0..bec2cbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 \ No newline at end of file + - if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then make html; fi \ No newline at end of file