diff options
author | Stephen Finucane <stephen@that.guru> | 2020-12-13 20:06:50 +0000 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-12-13 20:09:29 +0000 |
commit | 9a54bf4bfc54bda784db61035874db99cdc97e62 (patch) | |
tree | 42cea4f3a5d2ac34c39e98736501484574f836f1 | |
parent | c97530325cf94c13f904dabb63253a7482574b7a (diff) | |
download | patchwork-9a54bf4bfc54bda784db61035874db99cdc97e62.tar patchwork-9a54bf4bfc54bda784db61035874db99cdc97e62.tar.gz |
Add Python 3.9 support
This has been out since October. Time to support it.
Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r-- | releasenotes/notes/python-3-9-support-79fe9f9cbb1bf2b0.yaml | 5 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/releasenotes/notes/python-3-9-support-79fe9f9cbb1bf2b0.yaml b/releasenotes/notes/python-3-9-support-79fe9f9cbb1bf2b0.yaml new file mode 100644 index 0000000..072b47f --- /dev/null +++ b/releasenotes/notes/python-3-9-support-79fe9f9cbb1bf2b0.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + `Python 3.9 <https://www.python.org/downloads/release/python-390/>`_ is now + supported. @@ -1,6 +1,6 @@ [tox] minversion = 3.2 -envlist = pep8,docs,py{36,37,38}-django{22,30,31} +envlist = pep8,docs,py{36,37,38,39}-django{22,30,31} skipsdist = true ignore_basepython_conflict = true @@ -22,7 +22,7 @@ setenv = PYTHONDONTWRITEBYTECODE = 1 PYTHONDEVMODE = 1 py36: PYTHONWARNINGS = once,ignore::ImportWarning:backports - py{37,38}: PYTHONWARNINGS = once + py{37,38,39}: PYTHONWARNINGS = once passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY PW_TEST_DB_TYPE PW_TEST_DB_USER PW_TEST_DB_PASS PW_TEST_DB_HOST |