From c0981c0b107870e775c26875418b140153198a93 Mon Sep 17 00:00:00 2001 From: Roman Levin Date: Mon, 13 Feb 2017 16:21:54 +0100 Subject: [PATCH] Test against Pythons 3.5 and 3.6 --- .travis.yml | 2 ++ README.md | 2 ++ tox.ini | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e21cb75..5be6e34 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - '3.2' - '3.3' - '3.4' +- '3.5' +- '3.6' - pypy - pypy3 install: pip install . diff --git a/README.md b/README.md index a4a5a41..fdf83bd 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ against ground truth. See `mockredis.tests.fixtures` for more details and discla - Python 3.2 - Python 3.3 - Python 3.4 + - Python 3.5 + - Python 3.6 - PyPy - PyPy3 diff --git a/tox.ini b/tox.ini index fa74442..b1bd910 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py32, py33, py34, pypy, lint +envlist = py27, py32, py33, py34, py35, py36, pypy, lint [testenv] commands = python setup.py nosetests