diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index 8f307dbe..0a007bf9 100755 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -12,6 +12,7 @@ PYTHON_VERSION: - 3.6 - 3.7 - 3.8 + - 3.9 PYTHON_CONNECTION_CLASS: - Urllib3HttpConnection diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78df5a2b..672f6007 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] steps: - name: Checkout Repository diff --git a/noxfile.py b/noxfile.py index 29935378..4ff8f18c 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ SOURCE_FILES = ( ) -@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8"]) +@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"]) def test(session): session.install(".") session.install("-r", "dev-requirements.txt")