Skip to content

Commit

Permalink
Python 2.6 appears to be failing due to deprecation notice, 3.7 requi…
Browse files Browse the repository at this point in the history
…res a workaround since this build is currently using trusty instead of xenial.
  • Loading branch information
ejhayes committed Dec 5, 2018
1 parent 5aee86f commit 4706382
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- "pip install ."
- "pip install pytest"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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, 3.4, 3.5, 3.6, and 3.7.
of JSONPath for Python. It is tested with Python 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7.
*(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
Expand Down

0 comments on commit 4706382

Please sign in to comment.