From d9e4e62503c42b2a71fb2cc388f303d4fad35cd4 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Fri, 6 Apr 2018 17:59:18 +0200 Subject: [PATCH] Drop support for Python 3.2 It's not supported by pip anymore (see https://github.com/pypa/pip/issues/3390) and not by the PSF either (see https://www.python.org/dev/peps/pep-0392/). --- .travis.yml | 18 +++++++----------- setup.py | 1 - tox.ini | 2 +- 3 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 40af4d1..52154f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,23 +2,19 @@ language: python cache: pip matrix: include: - - python: 2.6 + - python: "2.6" env: TOXENV=py26 - - python: 2.7 + - python: "2.7" env: TOXENV=py27 - - python: 3.2 - env: TOXENV=py32 - - python: 3.3 + - python: "3.3" env: TOXENV=py33 - - python: 3.4 + - python: "3.4" env: TOXENV=py34 - - python: 3.5 + - python: "3.5" env: TOXENV=py35 - - python: 3.6 - env: TOXENV=flake8 - - python: 3.6 + - python: "3.6" env: TOXENV=py36 - - python: pypy + - python: "pypy" env: TOXENV=pypy install: - travis_retry pip install tox diff --git a/setup.py b/setup.py index e92ee25..c569f41 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,6 @@ "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", diff --git a/tox.ini b/tox.ini index 976f76a..6e9f2bd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py{26,27,32,33,34,35,36,py},flake8 +envlist=py{26,27,33,34,35,36,py},flake8 [testenv] commands=