diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-11-10 21:54:54 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-11-10 21:54:56 -0800 |
commit | b70a5a18d3091fd61c41391a937e9fef1b27cf9c (patch) | |
tree | 392178b4b9d633202f89549bfca650d61f549e44 /Pipfile | |
parent | 2799c8e18f82e6a01ae15e257ed9e0de383bf806 (diff) | |
download | fuzzycat-b70a5a18d3091fd61c41391a937e9fef1b27cf9c.tar.gz fuzzycat-b70a5a18d3091fd61c41391a937e9fef1b27cf9c.zip |
pipenv: explicit regex dependency
regex, unlike stdlib 're' module, has unicode support.
I couldn't get pipenv to lock after adding this dependency, even though
Pipfile.lock already includes regex as a sub-dependency of something
else.
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ pydantic = "*" tokenizers = "*" spacy = "*" nltk = "*" +regex = "*" [requires] python_version = "3.7" |