From f0695b9f90878461c5a897a20bbf52c815f1e574 Mon Sep 17 00:00:00 2001 From: tlento Date: Fri, 19 Jan 2024 17:32:35 -0800 Subject: [PATCH] Remove unused numpy dependency Licensing analysis tripped a potential issue with numpy. The thing is we don't use numpy for anything - this dependency is only here because some past transitive dependency caused issues with M1 macs and pinning a minimum version for numpy ensured that particular problem would not come up. Even the initial addition was to pin past some security patch. Wild. Anyway, rather than try to figure out if the new licensing issue is a false positive, I'm simply removing the package from our linked dependency set. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5687630c0d..12c9161eaf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,6 @@ dependencies = [ "graphviz>=0.18.2, <0.21", "halo~=0.0.31", "more-itertools>=8.10.0, <10.2.0", - "numpy>=1.22.2", "pandas~=1.5.0", "pydantic~=1.10.0", "python-dateutil~=2.8.2",