Test on Python 3.9 (#1068)

* Test on Python 3.9

* Update trove classifiers
This commit is contained in:
Jamie Hewland 2020-10-07 21:58:59 +02:00 committed by GitHub
parent bfa61ad92b
commit c08aefca69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jobs:
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/setup-python@v2"
with:
python-version: 3.7
- name: "Install dependencies"

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

@ -70,6 +70,8 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
zip_safe=False,
)