]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Run tests against Python 3.9 and add trove classifier (#1342)
authorMichael K <michael-k@users.noreply.github.com>
Tue, 6 Oct 2020 12:12:52 +0000 (12:12 +0000)
committerGitHub <noreply@github.com>
Tue, 6 Oct 2020 12:12:52 +0000 (13:12 +0100)
Co-authored-by: Tom Christie <tom@tomchristie.com>
.github/workflows/test-suite.yml
setup.py

index 5ba2dadf343c9c0d0ca01f7bf3af88f6888cf0e3..616588c41912f9db26b52f7cb83934f10497fc2b 100644 (file)
@@ -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"
index 482c27208e7ca0aa3177075e83e9f19d2895ce17..b162a300f4cdd102c577f4fc20558c242c4f02ba 100644 (file)
--- 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",
     ],
 )