From a3eb0f99dc112fb5b09c7d6fdb9d211f96a6e3c1 Mon Sep 17 00:00:00 2001 From: Michael K Date: Tue, 6 Oct 2020 12:12:52 +0000 Subject: [PATCH] Run tests against Python 3.9 and add trove classifier (#1342) Co-authored-by: Tom Christie --- .github/workflows/test-suite.yml | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 5ba2dadf..616588c4 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,11 +14,11 @@ jobs: strategy: matrix: - python-version: ["3.6", "3.7", "3.8"] + python-version: ["3.6", "3.7", "3.8", "3.9.0-rc.2 - 3.9"] steps: - uses: "actions/checkout@v2" - - uses: "actions/setup-python@v1" + - uses: "actions/setup-python@v2" with: python-version: "${{ matrix.python-version }}" - name: "Install dependencies" diff --git a/setup.py b/setup.py index 482c2720..b162a300 100644 --- a/setup.py +++ b/setup.py @@ -77,6 +77,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", ], )