From 1324faf2c1ecbfedfffd9e07370e7bf9c3d3e4d0 Mon Sep 17 00:00:00 2001
From: ulif <uli@gnufix.de>
Date: Sun, 17 Apr 2016 14:13:09 +0200
Subject: [PATCH] Drop Python3.2 support.

`pip`, `wheel` and other fundamental helpers dropped or are going
to drop py3.2. It makes no sense to stick with it.
---
 CHANGES.rst | 2 ++
 setup.py    | 1 -
 tox.ini     | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index cffb84f..717e057 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,8 @@ Changes
 - Added new english wordlist ``en_securedrop``. This is the new
   default list. Thanks to `heartsucker
   <https://github.com/heartsucker>`_ who compiled and added the list.
+- Remove support for Python 3.2. Several packages we depend on for testing
+  and sandboxing stopped Python 3.2 support. We follow them.
 
 
 0.6.1 (2015-12-15)
diff --git a/setup.py b/setup.py
index 713650d..ae2fae8 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,6 @@ setup(
         "Programming Language :: Python :: 2.6",
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
-        "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 390c066..1d03512 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = flake8, pypy, py26, py27, py32, py33, py34, py35, coverage
+envlist = flake8, pypy, py26, py27, py33, py34, py35, coverage
 
 [testenv]
 usedevelop=True
-- 
GitLab