From b0bdce22de080771d81d61fef67a2a7c3f4b96d3 Mon Sep 17 00:00:00 2001 From: yangchoo Date: Tue, 19 Jan 2021 00:41:07 -0800 Subject: [PATCH] feat: Support Python 3.9 There are no obvious regressions for Python 3.9. Checking this into our test suite so that we can be notified of any future regressions. --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e479b94..25c43d35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] steps: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 558aa256..34172fa3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,7 @@ Added ~~~~~ - isort for automatic import sorting +- Python 3.9 support. Added to test suite. Fixed ~~~~~ diff --git a/tox.ini b/tox.ini index 82afa6c3..2333f276 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = clean, py36, py37, py38, stats, lint, docs +envlist = clean, py36, py37, py38, py39, stats, lint, docs [testenv] commands = python setup.py test