From: Michael K Date: Tue, 6 Oct 2020 12:12:52 +0000 (+0000) Subject: Run tests against Python 3.9 and add trove classifier (#1342) X-Git-Tag: 0.16.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3eb0f99dc112fb5b09c7d6fdb9d211f96a6e3c1;p=thirdparty%2Fhttpx.git Run tests against Python 3.9 and add trove classifier (#1342) Co-authored-by: Tom Christie --- 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", ], )