Skip to content

Commit dfd8d5e

Browse files
committed
Fix phrasetree fix: #1886
1 parent 785bed5 commit dfd8d5e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

hanlp/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Author: hankcs
33
# Date: 2019-12-28 19:26
44

5-
__version__ = '2.1.0-beta.56'
5+
__version__ = '2.1.0-beta.57'
66
"""HanLP version"""
77

88

plugins/hanlp_common/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='hanlp_common',
13-
version='0.0.19',
13+
version='0.0.20',
1414
description='HanLP: Han Language Processing',
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
@@ -32,7 +32,7 @@
3232
packages=find_packages(exclude=['docs', 'tests*']),
3333
include_package_data=True,
3434
install_requires=[
35-
'phrasetree',
35+
'phrasetree>=0.0.9',
3636
],
3737
extras_require={
3838
# These AMR dependencies might not be necessary for most people.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
'transformers>=4.1.1',
6969
'sentencepiece>=0.1.91', # Essential for tokenization_bert_japanese
7070
'torch>=1.6.0',
71-
'hanlp-common>=0.0.19',
71+
'hanlp-common>=0.0.20',
7272
'hanlp-trie>=0.0.4',
7373
'hanlp-downloader',
7474
*TOKENIZERS,

0 commit comments

Comments
 (0)