From 5df258f125588b0fae9fc1c1ac5026dc38f35c94 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Sat, 22 Apr 2017 12:54:07 +0200 Subject: [PATCH] Don't test on Python 2.6 as it does not have OrderedDict Fixes #6 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 86b36ff..77bc1e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python python: - - "2.6" +# - "2.6" # 2.6 does not have collections.OrderedDict - "2.7" - "3.2" - "3.3"