From 4e83dda28018a420caf9b41fa898d3a690b3d139 Mon Sep 17 00:00:00 2001 From: Maarten Sebregts Date: Tue, 15 Apr 2025 17:10:25 +0200 Subject: [PATCH] Remove numpy<2 restriction Pytest runs successfully with numpy 2.x, so we should be able to remove this restriction. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 56e6dc1..db5111c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,8 +56,7 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - # FIXME: numpy 2.0 compatibility - "numpy>=1.15.4,<2", + "numpy>=1.15.4", "rich", "scipy", "click",