diff --git a/.travis.yml b/.travis.yml index acc6c5508..f6983bca8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python sudo: false python: - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5" @@ -12,12 +11,8 @@ env: - DJANGO="Django>=1.10a,<1.11.0" matrix: exclude: - - python: "3.2" - env: DJANGO="Django>=1.9.0,<1.10.0" - python: "3.3" env: DJANGO="Django>=1.9.0,<1.10.0" - - python: "3.2" - env: DJANGO="Django>=1.10a,<1.11.0" - python: "3.3" env: DJANGO="Django>=1.10a,<1.11.0" - python: "3.5" diff --git a/docs/changes.rst b/docs/changes.rst index ffb175dfb..5c82e43f2 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -6,6 +6,8 @@ Change log This version is compatible with Django 1.10 and requires Django 1.8 or later. +Support for Python 3.2 is dropped. + 1.4 --- diff --git a/setup.py b/setup.py index 9ea6f5510..8db77004d 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,6 @@ 'Programming Language :: Python :: 2', '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 90a0dd0d8..e17b0d84c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{27,32,33,34}-django18, + py{27,33,34}-django18, py{27,34,35}-django{19,110}, flake8, isort @@ -8,7 +8,6 @@ envlist = [testenv] basepython = py27: python2.7 - py32: python3.2 py33: python3.3 py34: python3.4 py35: python3.5