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:
Robyn Speer 2018-10-25 11:07:55 -04:00
parent c1fe37bab5
commit d30183a7d7

View File

@ -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/',