File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed
Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
22files = setup.py xmnlp/__init__.py
3- current_version = 0.2.2
3+ current_version = 0.2.3
44commit = True
55tag = True
6-
Original file line number Diff line number Diff line change 11<p align =' center ' >/ xmnlp /</p >
22<p align =' center ' >小明 NLP — 轻量级中文自然语言处理工具</p >
33<p align =' center ' > A Lightweight Chinese Natural Language Processing Toolkit</p >
4- <p align =' center ' >v 0.2.2 </p >
4+ <p align =' center ' >v 0.2.3 </p >
55
6- <p align =' center ' ><strong >R.I.P</strong > 0.2.2版是 xmnlp 最后一个兼容 Python 2.7 的版本</div >
6+ <p align =' center ' ><strong >R.I.P</strong > 0.2.3版是 xmnlp 最后一个兼容 Python 2.7 的版本</div >
77
8- [ ![ pypi] ( https://img.shields.io/badge/pypi-v0.2.2 -blue.svg )] ( https://pypi.org/project/xmnlp/ )
8+ [ ![ pypi] ( https://img.shields.io/badge/pypi-v0.2.3 -blue.svg )] ( https://pypi.org/project/xmnlp/ )
99![ python version] ( https://img.shields.io/badge/python-2%2C3-orange.svg )
1010![ support os] ( https://img.shields.io/badge/os-linux%2C%20win%2C%20mac-yellow.svg )
1111[ ![ GitHub license] ( https://img.shields.io/github/license/SeanLee97/xmnlp.svg )] ( https://github.com/SeanLee97/xmnlp/blob/master/LICENSE )
Original file line number Diff line number Diff line change 1414 sys .setdefaultencoding ('utf8' )
1515
1616
17- __version__ = '0.2.2 '
17+ __version__ = '0.2.3 '
1818
1919LONGDESC = """
2020============
Original file line number Diff line number Diff line change 2727 sys .setdefaultencoding ('utf8' )
2828
2929__author__ = 'sean lee'
30- __version__ = '0.2.2 '
30+ __version__ = '0.2.3 '
3131
3232
3333def load_stopword (fpath ):
Original file line number Diff line number Diff line change 1616if sys .version_info [0 ] == 2 :
1717 reload (sys )
1818 sys .setdefaultencoding ('utf8' )
19+ elif sys .version_info [0 ] == 3 :
20+ unicode = str
1921
2022# checker model
2123model = None
You can’t perform that action at this time.
0 commit comments