diff options
| author | Philip Allgaier <mail@spacegaier.de> | 2020-09-21 12:36:47 +0200 |
|---|---|---|
| committer | Alec Thomas <alec@swapoff.org> | 2020-09-21 14:58:49 -0700 |
| commit | d8d863d0bd8526c58a3e78506d17de8c9febcf30 (patch) | |
| tree | cb9135ca70d79a8eaf4c96d15ddfd3f6b2a7e492 | |
| parent | 5f14afc580bc25cc2055aac279f63c98c47948fb (diff) | |
| download | voluptuous-d8d863d0bd8526c58a3e78506d17de8c9febcf30.tar.gz | |
Cleanup python versions (remove unsupported + add 3.8)
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | setup.py | 3 | ||||
| -rw-r--r-- | tox.ini | 17 |
3 files changed, 3 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml index 90f17de..51b64e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - '2.7' - '3.6' - '3.7' -- pypy3.5 +- '3.8' install: - pip install coveralls - pip install 'coverage<4' @@ -2,8 +2,6 @@ from setuptools import setup import sys import io -import os -import atexit sys.path.insert(0, '.') version = __import__('voluptuous').__version__ @@ -36,5 +34,6 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ] ) @@ -1,5 +1,5 @@ [tox] -envlist = flake8,py27,py34,py35,py36,py37 +envlist = flake8,py27,py36,py37,py38 [flake8] ; E501: line too long (X > 79 characters) @@ -23,18 +23,3 @@ commands = [testenv:flake8] deps = flake8 commands = flake8 --doctests setup.py voluptuous - -[testenv:py27] -basepython = python2.7 - -[testenv:py34] -basepython = python3.4 - -[testenv:py35] -basepython = python3.5 - -[testenv:py36] -basepython = python3.6 - -[testenv:py37] -basepython = python3.7 |
