aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-11-10 21:54:54 -0800
committerBryan Newbold <bnewbold@archive.org>2020-11-10 21:54:56 -0800
commitb70a5a18d3091fd61c41391a937e9fef1b27cf9c (patch)
tree392178b4b9d633202f89549bfca650d61f549e44
parent2799c8e18f82e6a01ae15e257ed9e0de383bf806 (diff)
downloadfuzzycat-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.
-rw-r--r--Pipfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index c3606c8..39dedee 100644
--- a/Pipfile
+++ b/Pipfile
@@ -23,6 +23,7 @@ pydantic = "*"
tokenizers = "*"
spacy = "*"
nltk = "*"
+regex = "*"
[requires]
python_version = "3.7"