Loosen dateparser dependency to get python3.10 wheel for regex package

This should reduce chances of installation errors due to regex package
being built from source for python3.11

Previously, the regex dependency of dateparser = 1.1.1 didn't have a
wheel for python 3.11. This would trigger building the regex package
from scratch which would fail for a lot of folks
This commit is contained in:
Debanjum Singh Solanky 2023-08-06 22:48:40 -07:00
parent 8b41eb9f14
commit 75c16432a4

View file

@ -37,7 +37,7 @@ classifiers = [
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"dateparser == 1.1.1",
"dateparser >= 1.1.1",
"defusedxml == 0.7.1",
"fastapi == 0.77.1",
"jinja2 == 3.1.2",