mirror of
https://github.com/zoriya/guessit.git
synced 2026-06-08 20:35:34 +00:00
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:
@@ -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']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user