From 90cb7c5decaee0efbdcc6aa18c1e8ebdf9ed297f Mon Sep 17 00:00:00 2001 From: Cooper Benson Date: Mon, 20 Aug 2018 16:59:04 -0600 Subject: Adding Python 3.5 and 3.6 to the travis config --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3c55ece..6a99738 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,9 @@ python: - "3.2" - "3.3" - "3.4" -install: + - "3.5" + - "3.6" +install: - "pip install ." - "pip install pytest" - "pip install coveralls" -- cgit v1.2.1 From 2af7dd8113d04cd7b2bcd8db9da534169cf2f055 Mon Sep 17 00:00:00 2001 From: Cooper Benson Date: Mon, 20 Aug 2018 17:14:09 -0600 Subject: Updating README --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index a6ef686..2811fd4 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,7 @@ https://github.com/kennknowles/python-jsonpath-rw |Build Status| |Test coverage| |PyPi version| |PyPi downloads| This library provides a robust and significantly extended implementation -of JSONPath for Python. It is tested with Python 2.6, 2.7, 3.2, 3.3. +of JSONPath for Python. It is tested with Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, and 3.6. *(On travis-ci there is a segfault when running the tests with pypy; I don't think the problem lies with this library)*. This library differs from other JSONPath implementations in that it is a @@ -51,7 +51,7 @@ Then: >>> [match.value for match in parse('a.*.b.`parent`.c').find({'a': {'x': {'b': 1, 'c': 'number one'}, 'y': {'b': 2, 'c': 'number two'}}})] ['number two', 'number one'] - # You can also build expressions directly quite easily + # You can also build expressions directly quite easily >>> from jsonpath_rw.jsonpath import Fields >>> from jsonpath_rw.jsonpath import Slice @@ -205,7 +205,7 @@ This package is authored and maintained by: - `Kenn Knowles `__ (`@kennknowles `__) - + with the help of patches submitted by `these contributors `__. Copyright and License -- cgit v1.2.1