From b64a235bf6f64f6e2891a3b21ac5c02292902912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Tue, 12 Dec 2017 16:35:07 +0100 Subject: [PATCH] Drops support for Python 3.3 Reached its EOL in September 2017 https://www.python.org/dev/peps/pep-0398/#x-end-of-life --- .travis.yml | 11 ----------- setup.py | 3 ++- tox.ini | 2 +- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7e55fe8c..25e8093a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ sudo: false language: python python: - 2.7 -- 3.3 - 3.4 - 3.5 - 3.6 @@ -30,16 +29,6 @@ matrix: exclude: - python: 2.7 env: WEBFRAMEWORK=django-master - - python: 3.3 - env: WEBFRAMEWORK=django-1.4 - - python: 3.3 - env: WEBFRAMEWORK=django-1.9 - - python: 3.3 - env: WEBFRAMEWORK=django-1.10 - - python: 3.3 - env: WEBFRAMEWORK=django-1.11 - - python: 3.3 - env: WEBFRAMEWORK=django-master - python: 3.4 env: WEBFRAMEWORK=django-1.4 - python: 3.5 diff --git a/setup.py b/setup.py index e419a0a0..f27b854a 100644 --- a/setup.py +++ b/setup.py @@ -174,8 +174,9 @@ def run_tests(self): 'Topic :: Software Development', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], ) diff --git a/tox.ini b/tox.ini index 4a93f414..468e1513 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py{26,27,33,34,35,py} +envlist = py{27,34,35,36,py} [testenv] commands = python setup.py test -a "{posargs}"