summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2016-03-21 13:05:35 +1300
committerRobert Collins <rbtcollins@hp.com>2016-03-21 13:09:59 +1300
commitcc94c6674448760c4e6b0bf8eb54cfacfc083c1b (patch)
tree4624d020216113e501b4d199a626919a8a387a5a
parent7041095e3e8f0a8e15aeb671f879c01d7b3f9091 (diff)
downloadmock-cc94c6674448760c4e6b0bf8eb54cfacfc083c1b.tar.gz
Drop support for Python 3.2.
Pip 8 no longer supports 3.2, so we can't sensibly support it going forward - but folk can use an older Mock if they need 3.2 support.
-rw-r--r--.travis.yml1
-rw-r--r--docs/index.txt6
2 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 58f20d3..7f855dd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,7 +3,6 @@ language: python
python:
- "2.6"
- "2.7"
- - "3.2"
- "3.3"
- "3.4"
- pypy
diff --git a/docs/index.txt b/docs/index.txt
index cbdc7a4..f0b6dc1 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -45,7 +45,9 @@ the newest features from the latest release of Python available for all
Pythons.
The ``mock`` package contains a rolling backport of the standard library mock
-code compatible with Python 2.6 and up, and 3.2 and up.
+code compatible with Python 2.6 and up, and 3.3 and up. Python 3.2 is supported
+by mock 1.3.0 and below - with pip no longer supporting 3.2, we cannot test
+against that version anymore.
Please see the standard library documentation for usage details.
@@ -121,7 +123,7 @@ Checkout from git (see :ref:`installing`) and submit pull requests.
Committers can just push as desired: since all semantic development takes
place in cPython, the backport process is as lightweight as we can make it.
-mock is CI tested using Travis-CI on Python versions 2.6, 2.7, 3.2, 3.3, 3.4,
+mock is CI tested using Travis-CI on Python versions 2.6, 2.7, 3.3, 3.4,
3.5, nightly Python 3 builds, pypy, pypy3. Jython support is desired, if
someone could contribute a patch to .travis.yml to support it that would be
excellent.