summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml1
-rw-r--r--changelog.rst5
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
4 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 68eb3812..6093e745 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/changelog.rst b/changelog.rst
index 5358c8ea..9eb6869a 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -6,6 +6,11 @@ Features:
* Add support for `\T` command to change format output. (Thanks: `Frederic Aoustin`_).
+Internal changes:
+-----------------
+
+* Removed support for Python 3.3. (Thanks: `Irina Truong`_)
+
1.8.2
=====
diff --git a/setup.py b/setup.py
index ed1f8bac..76ae1bf8 100644
--- a/setup.py
+++ b/setup.py
@@ -56,7 +56,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 cd075911..c71af93c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27, py33, py34, py35, py36
+envlist = py27, py34, py35, py36
[testenv]
deps = pytest
mock