summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Allgaier <mail@spacegaier.de>2020-10-07 19:13:30 +0200
committerGitHub <noreply@github.com>2020-10-07 19:13:30 +0200
commit6b0fdc3e178af7267d97827787669da16c19dd01 (patch)
treec0ebf309de698160e7e74050a148581b6c11a0e2
parenta62e5391a66804e67d7365d02fc06802bdaffb28 (diff)
downloadvoluptuous-6b0fdc3e178af7267d97827787669da16c19dd01.tar.gz
Add Python 3.9 support (#433)
-rw-r--r--.travis.yml1
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
3 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 12cee00..e6d6c6e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,7 @@ python:
- '3.6'
- '3.7'
- '3.8'
+- '3.9'
install:
- pip install coveralls
- pip install coverage
diff --git a/setup.py b/setup.py
index fe6cb67..0579161 100644
--- a/setup.py
+++ b/setup.py
@@ -35,5 +35,6 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
]
)
diff --git a/tox.ini b/tox.ini
index adfe893..8d4c8ff 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = flake8,py27,py36,py37,py38
+envlist = flake8,py27,py36,py37,py38,py39
[flake8]
; E501: line too long (X > 79 characters)