Run tests against Python 3.9 and add trove classifier (#1342)

Co-authored-by: Tom Christie <tom@tomchristie.com>
This commit is contained in:
Michael K 2020-10-06 12:12:52 +00:00 committed by GitHub
parent 4487ac067c
commit a3eb0f99dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View 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"

View File

@ -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",
],
)