module: add Python 3.9

- drop CI tests on unused Python versions
This commit is contained in:
cn 2021-01-06 11:43:10 +01:00 committed by Christian Nicolai
parent 7106a373e5
commit 0ce1b1a83c
2 changed files with 3 additions and 5 deletions

View File

@ -10,12 +10,10 @@ jobs:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
- python: "3.7"
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
- python: "3.9"
env: TOXENV=py39
install:
- pip install --ignore-installed --upgrade setuptools pip tox

View File

@ -1,5 +1,5 @@
[tox]
envlist = py{27,35,37,38},qa
envlist = py{27,35,37,38,39},qa
skip_missing_interpreters = True
[testenv]