From d097324284067ec1f23f860938db32fcdfc2854c Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Tue, 28 Apr 2026 12:47:01 +0200 Subject: [PATCH 1/3] Update numpy version constraint in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c1b7ab01e3..02a45d3f57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ "matplotlib-inline>=0.1.7", "networkx>=3.5", "numba>=0.61", - "numpy<2.2", + "numpy<=2.4", "pandas>=2.3.2", "pyamg>=5.3.0", "pypardiso; platform_system != 'Darwin' and (platform_machine == 'x86_64' or platform_machine == 'AMD64')", From 459e6413f09b44cb9bdf6c6d19cf91510bc564e7 Mon Sep 17 00:00:00 2001 From: Amin Sadeghi Date: Tue, 28 Apr 2026 04:16:16 -0700 Subject: [PATCH 2/3] Remove numpy upper bound, set lower bound to 2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 02a45d3f57..87d9047189 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ "matplotlib-inline>=0.1.7", "networkx>=3.5", "numba>=0.61", - "numpy<=2.4", + "numpy>=2", "pandas>=2.3.2", "pyamg>=5.3.0", "pypardiso; platform_system != 'Darwin' and (platform_machine == 'x86_64' or platform_machine == 'AMD64')", From 7e6a20f5e6c158ea4268e0046f796d2b902d5e0b Mon Sep 17 00:00:00 2001 From: Amin Sadeghi Date: Tue, 28 Apr 2026 04:31:52 -0700 Subject: [PATCH 3/3] ci: re-trigger workflows