summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Allgaier <mail@spacegaier.de>2020-09-21 12:36:47 +0200
committerAlec Thomas <alec@swapoff.org>2020-09-21 14:58:49 -0700
commitd8d863d0bd8526c58a3e78506d17de8c9febcf30 (patch)
treecb9135ca70d79a8eaf4c96d15ddfd3f6b2a7e492
parent5f14afc580bc25cc2055aac279f63c98c47948fb (diff)
downloadvoluptuous-d8d863d0bd8526c58a3e78506d17de8c9febcf30.tar.gz
Cleanup python versions (remove unsupported + add 3.8)
-rw-r--r--.travis.yml2
-rw-r--r--setup.py3
-rw-r--r--tox.ini17
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'
diff --git a/setup.py b/setup.py
index 6408f8b..fe6cb67 100644
--- a/setup.py
+++ b/setup.py
@@ -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',
]
)
diff --git a/tox.ini b/tox.ini
index 7722ed8..adfe893 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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