From 09f49c7849b53f16d780920b0fb245c2ffbf6735 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Wed, 4 Nov 2020 14:45:09 +1100 Subject: [PATCH] Add py39 env to tox (#1740) An earlier commit added Python 3.9 support to CI, but neglected to change tox.ini to support an environment, do so here. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 086cc2e0..e47834cb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = lint, - py{35,36,37,38}, + py{35,36,37,38,39}, docs [gh-actions] @@ -10,6 +10,7 @@ python = 3.6: py36, docs, lint 3.7: py37 3.8: py38 + 3.9: py39 [testenv] deps = -rtest-requirements.txt