From 58decee3eef72538922ebe92c8f52febbb51930e Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 27 Nov 2015 21:59:02 +0000 Subject: [PATCH 1/2] extend travis to test python 3.3 - 3.5 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 00227053..15e75b82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ python: - 2.6 - 2.7 - 3.2 + - 3.3 + - 3.4 + - 3.5 - pypy script: From f4f70edcf4a41608df554cfcb8615dc0b9479890 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 27 Nov 2015 22:11:32 +0000 Subject: [PATCH 2/2] Fix brittle Attachable test --- pystache/tests/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystache/tests/common.py b/pystache/tests/common.py index 222e14f2..cdd22216 100644 --- a/pystache/tests/common.py +++ b/pystache/tests/common.py @@ -234,4 +234,4 @@ def __init__(self, **kwargs): def __repr__(self): return "%s(%s)" % (self.__class__.__name__, ", ".join("%s=%s" % (k, repr(v)) - for k, v in self.__args__.iteritems())) + for k, v in sorted(self.__args__.iteritems())))