From f9093e6b9cd458ab7d120069d58811ed87431372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Tue, 20 Oct 2020 09:51:15 +0200 Subject: [PATCH] Python 3.9 support --- .gitlab-ci.yml | 7 ++++++- setup.cfg | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62968167..7bbaf95e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,8 +28,13 @@ python38: stage: test script: tox -e py38 +python39: + image: python:3.9 + stage: test + script: tox -e py39 + coverage: - image: python:3.8 + image: python:3.9 stage: test script: - tox -e coverage diff --git a/setup.cfg b/setup.cfg index 66e898a5..ad56cb10 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,6 +35,7 @@ envlist = py36 py37 py38 + py39 coverage skipsdist=True