From 026aa903d2f2375d3823797427c48bd49f30a0eb Mon Sep 17 00:00:00 2001 From: Pi Delport Date: Mon, 20 Aug 2018 17:39:40 +0200 Subject: [PATCH] Drop support for Python 3.3 Setuptools and Tox no longer support or work on Python 3.3. --- .travis.yml | 5 ----- setup.py | 1 - tox.ini | 4 ++-- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index a2c2327..5320336 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - 2.7 - - 3.3 - 3.4 - 3.5 - 3.6 @@ -18,13 +17,9 @@ matrix: - { python: 3.5, env: DJANGO=1.7 } - { python: 3.6, env: DJANGO=1.7 } - { python: 3.6, env: DJANGO=1.8 } - - { python: 3.3, env: DJANGO=1.9 } - { python: 3.6, env: DJANGO=1.9 } - - { python: 3.3, env: DJANGO=1.10 } - { python: 3.6, env: DJANGO=1.10 } - - { python: 3.3, env: DJANGO=1.11 } - { python: 2.7, env: DJANGO=2.0 } - - { python: 3.3, env: DJANGO=2.0 } include: - { python: 3.6, env: TOXENV=flake8 } - { python: 3.6, env: TOXENV=readme } diff --git a/setup.py b/setup.py index 39d485c..b5b84b4 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,6 @@ setup( '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 309a875..23884ac 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,8 @@ [tox] envlist = # Python/Django combinations that are officially supported - py{27,33,34}-django17 - py{27,33,34,35}-django18 + py{27,34}-django17 + py{27,34,35}-django18 py{27,34,35}-django19 py{27,34,35}-django110 py{27,34,35,36}-django111