From ea045c41b7231e0f7096ca091fe943a67a77cecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 23 Nov 2018 14:03:11 +0100 Subject: [PATCH] CI: Drop Python 3.3 support The `pkg_resources` package inside `setuptools` explicitly [disallows Python 3.3](https://github.com/pypa/setuptools/commit/7392f01ffced3acfdef25b0b2d55cefdc6ee468a#diff-81de4a30a55fcc3fb944f8387ea9ec94): if (3, 0) < sys.version_info < (3, 4): raise RuntimeError("Python 3.4 or later is required") It's time to drop support for 3.3. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 39f7a27..94cf9c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: python python: - 2.6 - 2.7 - - 3.3 - 3.4 - 3.5 - 3.6