From 75c16432a450032ff425afa101c5c503aa9c530f Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Sun, 6 Aug 2023 22:48:40 -0700 Subject: [PATCH] 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 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4be3299b..100d4b69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",