From 815dfe2c090aee2d4a33ea73e6a4fc598228e2cf Mon Sep 17 00:00:00 2001 From: Nathan Levett <53554091+CloutKhan@users.noreply.github.com> Date: Fri, 18 Jul 2025 14:27:29 +1000 Subject: [PATCH 1/2] Update pyproject.toml --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2265b96b3..86ff1a5e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,6 @@ networkx = ">=2.3,<3" packaging = ">=20.9" azure-storage-blob = ">=12.11.0" pymsteams = ">=0.2.2,<1.0.0" -numpy = "<2.0.0" tabulate = ">= 0.9.0" pytz = ">= 2025.1" From dbe1e0498a74abe32d03c27b36efa7f12e042ad6 Mon Sep 17 00:00:00 2001 From: Nathan Levett <53554091+CloutKhan@users.noreply.github.com> Date: Fri, 14 Nov 2025 10:12:39 +1100 Subject: [PATCH 2/2] Set numpy as manually listed dependency but as unspecified range Keep numpy as a manually listed dependency (even though it should be a downstream dependency of dbt-core which is already listed) but unlimit it by giving it an any specifier. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 24b952659..c6ffca701 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ networkx = ">=2.3,<3" packaging = ">=20.9" azure-storage-blob = ">=12.11.0" pymsteams = ">=0.2.2,<1.0.0" +numpy = "*" tabulate = ">= 0.9.0" pytz = ">= 2025.1"