mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 09:21:37 +00:00
Allow a wider range of 'regex' versions
The behavior of segmentation shouldn't change within this range, and it includes the version currently used by SpaCy.
This commit is contained in:
parent
c1fe37bab5
commit
d30183a7d7
4
setup.py
4
setup.py
@ -28,14 +28,14 @@ README_contents = open(os.path.join(current_dir, 'README.md'),
|
||||
encoding='utf-8').read()
|
||||
doclines = README_contents.split("\n")
|
||||
dependencies = [
|
||||
'msgpack', 'langcodes >= 1.4.1', 'regex == 2018.02.21'
|
||||
'msgpack', 'langcodes >= 1.4.1', 'regex >= 2017.07.11, <= 2018.02.21'
|
||||
]
|
||||
if sys.version_info < (3, 4):
|
||||
dependencies.append('pathlib')
|
||||
|
||||
setup(
|
||||
name="wordfreq",
|
||||
version='2.2.0',
|
||||
version='2.2.1',
|
||||
maintainer='Robyn Speer',
|
||||
maintainer_email='rspeer@luminoso.com',
|
||||
url='http://github.com/LuminosoInsight/wordfreq/',
|
||||
|
Loading…
Reference in New Issue
Block a user