Add Python 3.9 support.

This commit is contained in:
Rémy HUBSCHER 2020-09-18 10:25:11 +02:00
parent 6cd9ec3dd0
commit 91be5c38a8
No known key found for this signature in database
GPG key ID: A500E24B95405094
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{35,36,36,37,38}-django{111,22,30},
envlist = py{36,37,38,39}-django{22,30,31},
flake8, sphinx, readme
[travis]