mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-24 09:51:38 +00:00
Merge pull request #74 from LuminosoInsight/msgpack-1.0-bugfix
Fix code affected by a breaking change in msgpack 1.0
This commit is contained in:
commit
40443c9a3b
@ -1,3 +1,9 @@
|
|||||||
|
## Version 2.2.2 (2020-02-28)
|
||||||
|
|
||||||
|
Library change:
|
||||||
|
|
||||||
|
- Fixed an incompatibility with newly-released `msgpack 1.0`.
|
||||||
|
|
||||||
## Version 2.2.1 (2019-02-05)
|
## Version 2.2.1 (2019-02-05)
|
||||||
|
|
||||||
Library changes:
|
Library changes:
|
||||||
|
2
setup.py
2
setup.py
@ -35,7 +35,7 @@ if sys.version_info < (3, 4):
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="wordfreq",
|
name="wordfreq",
|
||||||
version='2.2.1',
|
version='2.2.2',
|
||||||
maintainer='Robyn Speer',
|
maintainer='Robyn Speer',
|
||||||
maintainer_email='rspeer@luminoso.com',
|
maintainer_email='rspeer@luminoso.com',
|
||||||
url='http://github.com/LuminosoInsight/wordfreq/',
|
url='http://github.com/LuminosoInsight/wordfreq/',
|
||||||
|
@ -6,7 +6,7 @@ import gzip
|
|||||||
DICT_FILENAME = resource_filename('wordfreq', 'data/jieba_zh.txt')
|
DICT_FILENAME = resource_filename('wordfreq', 'data/jieba_zh.txt')
|
||||||
ORIG_DICT_FILENAME = resource_filename('wordfreq', 'data/jieba_zh_orig.txt')
|
ORIG_DICT_FILENAME = resource_filename('wordfreq', 'data/jieba_zh_orig.txt')
|
||||||
SIMP_MAP_FILENAME = resource_filename('wordfreq', 'data/_chinese_mapping.msgpack.gz')
|
SIMP_MAP_FILENAME = resource_filename('wordfreq', 'data/_chinese_mapping.msgpack.gz')
|
||||||
SIMPLIFIED_MAP = msgpack.load(gzip.open(SIMP_MAP_FILENAME), raw=False)
|
SIMPLIFIED_MAP = msgpack.load(gzip.open(SIMP_MAP_FILENAME), raw=False, strict_map_key=False)
|
||||||
jieba_tokenizer = None
|
jieba_tokenizer = None
|
||||||
jieba_orig_tokenizer = None
|
jieba_orig_tokenizer = None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user