From 72411cdf3636c8484fddd5c0ec5126b5eef7005a Mon Sep 17 00:00:00 2001 From: Simeon Visser Date: Sun, 24 Jun 2018 04:55:23 +0100 Subject: [PATCH] Drop support for Python 3.3 (#343) Python 3.3 has reached end-of-life: https://devguide.python.org/#status-of-python-branches (2017-09-29) --- .travis.yml | 1 - setup.py | 1 - tox.ini | 5 +---- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6583071..74d12fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - '2.7' -- '3.3' - '3.4' - '3.5' - '3.6' diff --git a/setup.py b/setup.py index 0f8fba8..f435962 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,6 @@ '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', diff --git a/tox.ini b/tox.ini index 0001568..20c543a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8,py27,py33,py34,py35,py36 +envlist = flake8,py27,py34,py35,py36 [flake8] ; E501: line too long (X > 79 characters) @@ -27,9 +27,6 @@ commands = flake8 --doctests setup.py voluptuous [testenv:py27] basepython = python2.7 -[testenv:py33] -basepython = python3.3 - [testenv:py34] basepython = python3.4