From cb6c8b0d60c79089af37f3d2395bbca84c53b839 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Mon, 23 Jan 2017 21:45:34 +0200
Subject: [PATCH] - Allow Python 3.2 to fail again (Jinja doesn't test on
 Python 3.2 so there may be no recurse but to remove testing on Python 3.2).

---
 .travis.yml | 2 ++
 README.rst  | 5 ++++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index d2268f7..34c476c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,6 +9,8 @@ matrix:
   include:
     - python: "3.5"
       env: TOXENV=docs
+  allow_failures:
+    - python: "3.2"
 
 install:
   - pip install tox-travis
diff --git a/README.rst b/README.rst
index e222e91..ffb12a4 100644
--- a/README.rst
+++ b/README.rst
@@ -46,7 +46,8 @@ The following Jinja filters were added:
 - :code:`pprint`: Pretty print variable.
 - :code:`combine`: Combine 2 dictionaries.
 
-Example usage can be seen in :code:`tests.sh`.
+Example usage can be seen in :code:`tests.sh` and for specific filters in the
+docstrings in :code:`template/filters.py`.
 
 Testing
 -------
@@ -79,6 +80,8 @@ at: https://www.shore.co.il/git/.
 TODO
 ----
 
+- Fix test failure on Python 3.2
+  (https://travis-ci.org/adarnimrod/template/jobs/194581463).
 - Release on tagged commits to PyPI in Travis CI
   (https://docs.travis-ci.com/user/deployment/pypi/ and
   https://docs.travis-ci.com/user/encryption-keys/).
-- 
GitLab