summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml8
-rw-r--r--CHANGES.rst5
-rwxr-xr-xsetup.py3
3 files changed, 9 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 6464b633..5d159793 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -65,7 +65,7 @@ _base_envs:
after_failure: skip
python:
- 2.7
-- 3.3
+- 3.4
- 3.7-dev
- *pypy2
- &pypy3 pypy3.5-5.8.0
@@ -77,8 +77,6 @@ jobs:
# TODO: fix tests
- python: *pypy3
- env: TOXENV=pre-commit-pep257
- # Python 3.3 tests failing; see #1666
- - python: 3.3
include:
- <<: *lint_python_base
env: TOXENV=pre-commit
@@ -103,9 +101,9 @@ jobs:
- *env_pyenv
- *env_path
- <<: *osx_python_base
- python: 3.3
+ python: 3.4
env:
- - PYTHON_VERSION=3.3.6
+ - PYTHON_VERSION=3.4.4
- *env_pyenv
- *env_path
- <<: *osx_python_base
diff --git a/CHANGES.rst b/CHANGES.rst
index a9ca819e..c48d190d 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,8 @@
+v13.0.0
+-------
+
+* #1666: Drop support for Python 3.3.
+
v12.0.2
-------
diff --git a/setup.py b/setup.py
index 4258ac3b..df6630c7 100755
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,6 @@ classifiers = [
'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',
@@ -116,7 +115,7 @@ setup_params = dict(
setup_requires=[
'setuptools_scm',
],
- python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',
+ python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
)