Skip to content

Commit 65f47ad

Browse files
committed
Merge branch 'hotfix/1.0.3'
2 parents 9ca9f04 + 4d30e5a commit 65f47ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+208
-48
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
.venv
2+
activate
3+
4+
# Docs
5+
docs/_api/
6+
docs/_build/
7+
8+
# Byte-compiled / optimized / DLL files
9+
__pycache__/
10+
*.py[cod]
11+
*$py.class
12+
13+
# C extensions
14+
*.so
15+
16+
# Distribution / packaging
17+
.Python
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
wheels/
30+
pip-wheel-metadata/
31+
share/python-wheels/
32+
*.egg-info/
33+
.installed.cfg
34+
*.egg
35+
MANIFEST
36+
37+
# PyInstaller
38+
# Usually these files are written by a python script from a template
39+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
40+
*.manifest
41+
*.spec
42+
43+
# Installer logs
44+
pip-log.txt
45+
pip-delete-this-directory.txt
46+
47+
# Unit test / coverage reports
48+
htmlcov/
49+
.tox/
50+
.nox/
51+
.coverage
52+
.coverage.*
53+
.cache
54+
nosetests.xml
55+
coverage.xml
56+
*.cover
57+
*.py,cover
58+
.hypothesis/
59+
.pytest_cache/
60+
61+
# Translations
62+
*.mo
63+
*.pot
64+
65+
# Django stuff:
66+
*.log
67+
local_settings.py
68+
db.sqlite3
69+
db.sqlite3-journal
70+
71+
# Flask stuff:
72+
instance/
73+
.webassets-cache
74+
75+
# Scrapy stuff:
76+
.scrapy
77+
78+
# PyBuilder
79+
target/
80+
81+
# Jupyter Notebook
82+
.ipynb_checkpoints
83+
84+
# IPython
85+
profile_default/
86+
ipython_config.py
87+
88+
# pyenv
89+
.python-version
90+
91+
# pipenv
92+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
94+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
95+
# install all needed dependencies.
96+
#Pipfile.lock
97+
98+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
99+
__pypackages__/
100+
101+
# Celery stuff
102+
celerybeat-schedule
103+
celerybeat.pid
104+
105+
# SageMath parsed files
106+
*.sage.py
107+
108+
# Environments
109+
.env
110+
.venv
111+
env/
112+
venv/
113+
ENV/
114+
env.bak/
115+
venv.bak/
116+
117+
# Spyder project settings
118+
.spyderproject
119+
.spyproject
120+
121+
# Rope project settings
122+
.ropeproject
123+
124+
# mkdocs documentation
125+
/site
126+
127+
# mypy
128+
.mypy_cache/
129+
.dmypy.json
130+
dmypy.json
131+
132+
# Pyre type checker
133+
.pyre/

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Installation via Pip
124124
.. attention::
125125
To use CkipClassic Parser Client backend, please
126126

127-
#. Register an account at http://parser.iis.sinica.edu.tw/v1/reg.exe
127+
#. Register an account at http://parser.iis.sinica.edu.tw/v1/reg.php
128128
#. Set the username and password in the pipeline's options:
129129

130130
.. code-block:: python
@@ -143,7 +143,7 @@ License
143143
144144
|GPL-3.0|
145145
146-
Copyright (c) 2018-2020 `CKIP Lab <https://ckip.iis.sinica.edu.tw>`__ under the `GPL-3.0 License <https://www.gnu.org/licenses/gpl-3.0.html>`__.
146+
Copyright (c) 2018-2023 `CKIP Lab <https://ckip.iis.sinica.edu.tw>`__ under the `GPL-3.0 License <https://www.gnu.org/licenses/gpl-3.0.html>`__.
147147
148148
.. |GPL-3.0| image:: https://www.gnu.org/graphics/gplv3-with-text-136x68.png
149149
:target: https://www.gnu.org/licenses/gpl-3.0.html

ckipnlp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
__author_name__ = 'Mu Yang'
99
__author_email__ = '[email protected]'
10-
__copyright__ = '2018-2020 CKIP Lab'
10+
__copyright__ = '2018-2023 CKIP Lab'
1111

1212
__title__ = 'CKIPNLP'
13-
__version__ = '1.0.2'
13+
__version__ = '1.0.3'
1414
__description__ = 'CKIP CoreNLP'
1515
__license__ = 'GPL-3.0'
1616

ckipnlp/container/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from .text import *

ckipnlp/container/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
import json as _json

ckipnlp/container/coref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from typing import (

ckipnlp/container/ner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from typing import (

ckipnlp/container/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from typing import (

ckipnlp/container/seg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from .base import (

ckipnlp/container/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__author__ = 'Mu Yang <http://muyang.pro>'
9-
__copyright__ = '2018-2020 CKIP Lab'
9+
__copyright__ = '2018-2023 CKIP Lab'
1010
__license__ = 'GPL-3.0'
1111

1212
from .base import (

0 commit comments

Comments
 (0)