Skip to content

Commit fb7394c

Browse files
committed
Changed documents to a list. Updated version
1 parent 14950e1 commit fb7394c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyjsonnlp/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from typing import List
1515

1616
name = "pyjsonnlp"
17-
__version__ = "0.2.14"
17+
__version__ = "0.2.17"
1818

1919

2020
def get_base() -> OrderedDict:
@@ -46,7 +46,8 @@ def get_base() -> OrderedDict:
4646
"counts": {},
4747
},
4848
"conll": {},
49-
"documents": {}
49+
#"documents": {}
50+
"documents": []
5051
})
5152

5253

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="pyjsonnlp",
9-
version='0.2.16',
9+
version='0.2.17',
1010
python_requires='>=3.6',
1111
author="Damir Cavar, Oren Baldinger, Maanvitha Gongalla, Anurag Kumar, Murali Kammili",
1212
author_email="damir@cavar.me",

0 commit comments

Comments
 (0)