From 7429b737a55804ae7c689a9de5531fb5e7427e4e Mon Sep 17 00:00:00 2001 From: Chris Burroughs Date: Fri, 2 Feb 2024 15:32:38 -0500 Subject: [PATCH] feat: widen spacy requirements spacy is a large library with many transitive dependencies. Having a tight bound makes resolving datahub-ingests with wider Python ecosystems difficult. --- datahub-classify/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datahub-classify/setup.py b/datahub-classify/setup.py index 4788e61..b8c42e2 100644 --- a/datahub-classify/setup.py +++ b/datahub-classify/setup.py @@ -18,7 +18,7 @@ def get_long_description(): "schwifty>=2022.9.0", "python-stdnum>=1.17", "ipaddress>=1.0.23", - "spacy>=3.4.1,<=3.5.0", + "spacy>=3.4.1,<3.8", "phonenumbers>=8.12.56,<=8.13.0", }