From fe478fae364550b79ec0c59b5ba52eaf658c8b27 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Mon, 31 May 2021 13:46:49 +0200 Subject: [PATCH] bumped travis and appveyor CI to python 3.9 --- .appveyor.yml | 10 +++++++++- .gitignore | 7 ++++++- .travis.yml | 9 ++++----- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b8009cc..fbcffb8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,9 +19,17 @@ environment: PYTHON_ARCH: "32" - PYTHON: "C:\\Python38" - PYTHON_VERSION: "3.8.0" + PYTHON_VERSION: "3.8.7" PYTHON_ARCH: "32" + - PYTHON: "C:\\Python39" + PYTHON_VERSION: "3.9.1" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python39" + PYTHON_VERSION: "3.9.1" + PYTHON_ARCH: "64" + init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" diff --git a/.gitignore b/.gitignore index 8f53a48..0b25608 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,9 @@ apikeysrc coverage* .coverage .cache/* -MANIFEST \ No newline at end of file +MANIFEST +.DS_Store +__pycache__ +*.pyc +*.tar.gz +*.egg-info diff --git a/.travis.yml b/.travis.yml index 96be9fc..e497df3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,12 @@ python: - "2.7" - "3.4" - "3.5" - - "3.5-dev" # 3.5 development branch - "3.6" - - "3.6-dev" # 3.6 development branch - "3.7" - - "3.7-dev" # 3.7 development branch - "3.8" - "3.8-dev" # 3.8 development branch + - "3.9" + - "3.9-dev" # 3.8 development branch - "nightly" - "pypy" jobs: @@ -27,8 +26,8 @@ install: # run tests script: - pytest --cov=./ - - if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then codecov; fi + - if [[ $TRAVIS_PYTHON_VERSION == 3.9 ]]; 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.8 ]]; then make html; fi \ No newline at end of file + - if [[ $TRAVIS_PYTHON_VERSION == 3.9 ]]; then make html; fi \ No newline at end of file