Skip to content

Commit 40d4cf1

Browse files
authored
Merge pull request #1 from idxn/master
use jsonpath-rw-ext instead of pure jsonpath-rw to support extensions…
2 parents ca10885 + 0156519 commit 40d4cf1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

JSONLibrary/JSONLibraryKeywords.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
from version import VERSION
55
import os.path
66
import json
7-
from jsonpath_rw import Index, parse, Fields
7+
from jsonpath_rw import Index, Fields
8+
from jsonpath_rw_ext import parse
89

910
__author__ = 'Traitanit Huangsri'
1011
__email__ = '[email protected]'

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
robotframework>=3.0
22
jsonpath-rw==1.4.0
3+
jsonpath-rw-ext>=0.1.9
34
coverage==4.2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
'tox',
99
'coverage',
1010
'robotframework>=3.0',
11-
'jsonpath-rw==1.4.0'
11+
'jsonpath-rw==1.4.0',
12+
'jsonpath-rw-ext>=0.1.9'
1213
]
1314

1415
test_requirements = [

0 commit comments

Comments
 (0)