fix(regex): use rebulk 3+ to have regex module disabled by default

Regex module is now disabled by default in rebulk 3+.

It can be enabled with REBULK_REGEX_ENABLED=1 in your environment.
This commit is contained in:
Rémi Alvergnat
2020-12-23 22:16:25 +01:00
parent fe0696646f
commit 28658b2772
8 changed files with 23 additions and 8 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
changelog = f.read()
install_requires = ['rebulk==2.*', 'babelfish', 'python-dateutil']
install_requires = ['rebulk>=3', 'babelfish', 'python-dateutil']
setup_requires = ['pytest-runner']