8000 Add support for python 3.7 (#65) · steveknoblock/python-jsonpath-rw@73dfccd · GitHub
[go: up one dir, main page]

Skip to content

Commit 73dfccd

Browse files
Eric Hayeskennknowles
authored andcommitted
Add support for python 3.7 (kennknowles#65)
* Adding support for 3.7. This was previously left out due to some issues mentioned in 3.7-dev for travis-ci (see: travis-ci/travis-ci#9815), but those issues appear to be resolved now. * Python 2.6 appears to be failing due to deprecation notice, 3.7 requires a workaround since this build is currently using trusty instead of xenial.
1 parent ad40d71 commit 73dfccd

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
54
- "3.2"
65
- "3.3"
76
- "3.4"
87
- "3.5"
98
- "3.6"
9+
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
10+
matrix:
11+
include:
12+
- python: 3.7
13+
dist: xenial
14+
sudo: true
1015
install:
1116
- "pip install ."
1217
- "pip install pytest"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://github.com/kennknowles/python-jsonpath-rw
66
|Build Status| |Test coverage| |PyPi version| |PyPi downloads|
77

88
This library provides a robust and significantly extended implementation
9-
of JSONPath for Python. It is tested with Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, and 3.6.
9+
of JSONPath for Python. It is tested with Python 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7.
1010
*(On travis-ci there is a segfault when running the tests with pypy; I don't think the problem lies with this library)*.
1111

1212
This library differs from other JSONPath implementations in that it is a

0 commit comments

Comments
 (0)
0