diff options
| author | Gael Pasgrimaud <gael@gawel.org> | 2020-03-26 14:31:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-26 14:31:49 +0100 |
| commit | dc131c2da6fda447efa41f1a429b112aba9445eb (patch) | |
| tree | 08d001845ac67d1329df224d3263f998a8820be6 | |
| parent | fac5115130463c3ae06806c3e2a394ab9a4fe746 (diff) | |
| parent | 302155f5c16461b4c43675c88ef848c9b0abc5f9 (diff) | |
| download | webtest-dc131c2da6fda447efa41f1a429b112aba9445eb.tar.gz | |
Merge pull request #223 from tommilligan/python3.8
ci: test and mark as python3.8 compatible
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | tox.ini | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f4bc188..ef65b16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,8 @@ matrix: - python: 3.7 env: TOXENV=py37 dist: xenial + - python: 3.8 + env: TOXENV=py38 - python: 3.6 env: TOXENV=docs @@ -40,6 +40,7 @@ setup(name='WebTest', "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], keywords='wsgi test unit tests web', author='Ian Bicking', @@ -1,6 +1,6 @@ [tox] skip_missing_interpreters=true -envlist=py27,py35,py36,py37,coverage,docs +envlist=py27,py35,py36,py37,py38,coverage,docs [testenv] skip_install=true |
