From 5d5e3b0a1287fe0428304ee9fc54e48e5200041e Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 25 Oct 2017 23:41:07 +0200 Subject: [PATCH] Unit tests pass on Travis CI for all expected versions of Python This contribution drop the execution of the unit tests on Python 3.2. Python 3.2 is not supported by pytest anymore [1] and there are no more security updates [2]. confiture should not encourage the use of an abandoned version of Python. Also, this contribution adds the current Python 3 version (3.6) to the list of the tested environments. [1] https://github.com/pytest-dev/pytest/pull/1678 [2] https://www.python.org/dev/peps/pep-0392/#lifespan --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 32d356a..b32aa2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,10 @@ language: python python: - "2.6" - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5" + - "3.6" - "pypy" - "pypy3" script: python setup.py test