summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-11-25 10:43:28 +0200
committerHugo <hugovk@users.noreply.github.com>2019-11-25 12:21:39 +0200
commitf417174a19b67b0f00fad9eac82c803d7571aec4 (patch)
tree1bc0d43a06cb2673269b474d5642563b73009ef7
parent0b23358500caa1220c8ce71fa6d40155148ddae1 (diff)
downloadtesttools-f417174a19b67b0f00fad9eac82c803d7571aec4.tar.gz
Drop support for EOL Python 3.4
-rw-r--r--.travis.yml1
-rw-r--r--README.rst2
-rw-r--r--doc/hacking.rst2
-rwxr-xr-xscripts/all-pythons2
-rw-r--r--setup.cfg1
5 files changed, 3 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 784608e..19fc63c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,6 @@ language: python
python:
- "2.7"
- - "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
diff --git a/README.rst b/README.rst
index e46faef..2e1b020 100644
--- a/README.rst
+++ b/README.rst
@@ -31,7 +31,7 @@ under the same license as Python, see LICENSE for details.
Supported platforms
-------------------
- * Python 2.7 or 3.4+ / pypy (2.x+)
+ * Python 2.7 or 3.5+ / pypy (2.x+)
If you would like to use testtools for earlier Pythons, please use testtools
1.9.0, or for *really* old Pythons, testtools 0.9.15.
diff --git a/doc/hacking.rst b/doc/hacking.rst
index 0afe29e..4f17d15 100644
--- a/doc/hacking.rst
+++ b/doc/hacking.rst
@@ -15,7 +15,7 @@ Coding style
In general, follow `PEP 8`_ except where consistency with the standard
library's unittest_ module would suggest otherwise.
-testtools currently supports Python 2.7 and Python 3.4 and later.
+testtools currently supports Python 2.7 and Python 3.5 and later.
Copyright assignment
--------------------
diff --git a/scripts/all-pythons b/scripts/all-pythons
index fbc36c9..8f1b0fe 100755
--- a/scripts/all-pythons
+++ b/scripts/all-pythons
@@ -89,5 +89,5 @@ def now():
if __name__ == '__main__':
sys.path.append(ROOT)
result = TestProtocolClient(sys.stdout)
- for version in '2.7 3.4 3.5 3.6'.split():
+ for version in '2.7 3.5 3.6'.split():
run_for_python(version, result, sys.argv[1:])
diff --git a/setup.cfg b/setup.cfg
index 6eb0363..3557813 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,7 +14,6 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython