mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-01 14:19:58 +01:00
bumped travis and appveyor CI to python 3.9
This commit is contained in:
parent
b2a76a8695
commit
fe478fae36
|
|
@ -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%"
|
||||
|
||||
|
|
|
|||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -4,4 +4,9 @@ apikeysrc
|
|||
coverage*
|
||||
.coverage
|
||||
.cache/*
|
||||
MANIFEST
|
||||
MANIFEST
|
||||
.DS_Store
|
||||
__pycache__
|
||||
*.pyc
|
||||
*.tar.gz
|
||||
*.egg-info
|
||||
|
|
|
|||
|
|
@ -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
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.9 ]]; then make html; fi
|
||||
Loading…
Reference in a new issue