Python 3.9 support

This commit is contained in:
Éloi Rivard 2020-10-20 09:51:15 +02:00
parent a5ece4a324
commit f9093e6b9c
2 changed files with 7 additions and 1 deletions

View file

@ -28,8 +28,13 @@ python38:
stage: test stage: test
script: tox -e py38 script: tox -e py38
python39:
image: python:3.9
stage: test
script: tox -e py39
coverage: coverage:
image: python:3.8 image: python:3.9
stage: test stage: test
script: script:
- tox -e coverage - tox -e coverage

View file

@ -35,6 +35,7 @@ envlist =
py36 py36
py37 py37
py38 py38
py39
coverage coverage
skipsdist=True skipsdist=True