From f417174a19b67b0f00fad9eac82c803d7571aec4 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 25 Nov 2019 10:43:28 +0200 Subject: Drop support for EOL Python 3.4 --- .travis.yml | 1 - README.rst | 2 +- doc/hacking.rst | 2 +- scripts/all-pythons | 2 +- setup.cfg | 1 - 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 -- cgit v1.2.1