Merge pull request #160 from jazzband/add-python3.9-support

Add Python 3.9 support.
This commit is contained in:
Rémy HUBSCHER 2020-09-18 16:50:11 +02:00 committed by GitHub
commit 3bb1a73e6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,7 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9-dev
install:
- pip install tox
- pip install -q tox-travis

View file

@ -42,6 +42,7 @@ CLASSIFIERS = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
KEYWORDS = [
"file",

View file

@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38}-django{22,30,31},
envlist = py{36,37,38,39}-django{22,30,31},
flake8, sphinx, readme
[travis]