diff options
| author | Philip Allgaier <mail@spacegaier.de> | 2020-10-07 19:13:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-07 19:13:30 +0200 |
| commit | 6b0fdc3e178af7267d97827787669da16c19dd01 (patch) | |
| tree | c0ebf309de698160e7e74050a148581b6c11a0e2 | |
| parent | a62e5391a66804e67d7365d02fc06802bdaffb28 (diff) | |
| download | voluptuous-6b0fdc3e178af7267d97827787669da16c19dd01.tar.gz | |
Add Python 3.9 support (#433)
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | tox.ini | 2 |
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 @@ -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', ] ) @@ -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) |
