summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenn Knowles <kenn@kennknowles.com>2018-11-14 22:10:10 -0700
committerGitHub <noreply@github.com>2018-11-14 22:10:10 -0700
commitad40d71068cc8a2d974b9295aee71730774db34a (patch)
tree503d5642531a7dc14716b261bae6ce5742022dd8
parent669f652e865dbbb3cac23e9ea62a5ac87d50f23c (diff)
parent2af7dd8113d04cd7b2bcd8db9da534169cf2f055 (diff)
downloadjsonpath-rw-ad40d71068cc8a2d974b9295aee71730774db34a.tar.gz
Merge pull request #62: Adding Python 3.5 and 3.6 to the Travis config
-rw-r--r--.travis.yml4
-rw-r--r--README.rst6
2 files changed, 6 insertions, 4 deletions
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"
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 <https://github.com/kennknowles>`__
(`@kennknowles <https://twitter.com/KennKnowles>`__)
-
+
with the help of patches submitted by `these contributors <https://github.com/kennknowles/python-jsonpath-rw/graphs/contributors>`__.
Copyright and License