8000 Merge pull request #75: Fixed TravisCI build · kennknowles/python-jsonpath-rw@b008a97 · GitHub
[go: up one dir, main page]

Skip to content

Commit b008a97

Browse files
authored
Merge pull request #75: Fixed TravisCI build
2 parents f615451 + f2ded16 commit b008a97

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.travis.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
11
language: python
22
python:
33
- "2.7"
4-
- "3.2"
5-
- "3.3"
64
- "3.4"
75
- "3.5"
86
- "3.6"
7+
- "pypy"
8+
- "pypy3"
99
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
1010
matrix:
1111
include:
1212
- python: 3.7
1313
dist: xenial
1414
sudo: true
1515
install:
16-
- "pip install ."
17-
- "pip install pytest"
18-
- "pip install coveralls"
19-
# Coveralls 4.0 doesn't support Python 3.2
20-
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
21-
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi
16+
- pip install .
17+
- pip install pytest
18+
- pip install coveralls
19+
- pip install coverage
2220
script: coverage run setup.py test
2321
after_success:
2422
- coveralls

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +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.7, 3.2, 3.3, 3.4, 3.5, 3.6, and 3.7.
10-
*(On travis-ci there is a segfault when running the tests with pypy; I don't think the problem lies with this library)*.
9+
of JSONPath for Python. It is tested with Python 2.7, 3.4, 3.5, 3.6, 3.7, pypy and pypy3.
1110

1211
This library differs from other JSONPath implementations in that it is a
1312
full *language* implementation, meaning the JSONPath expressions are

0 commit comments

Comments
 (0)
0