From 029fc1e155369bb044140f79e4858b9ee285c62a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Thu, 6 Feb 2020 11:50:42 +0100 Subject: [PATCH] Update Python versions - drop Python 3.4 - add Python 3.7 and 3.8 modified: .travis.yml modified: setup.py modified: tox.ini --- .travis.yml | 3 ++- setup.py | 4 ++-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b523aedf..236de21f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,10 @@ language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" + - "3.7" + - "3.8" # command to install dependencies install: diff --git a/setup.py b/setup.py index f0472e4a..124142b1 100644 --- a/setup.py +++ b/setup.py @@ -58,10 +58,10 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules' ] diff --git a/tox.ini b/tox.ini index 2f02859e..c388a4d8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36 +envlist = py27, py35, py36, py37, py38 skip_missing_interpreters = true skipsdist = true