From 81ce900f5daafb9a4e02c130130cd6616d3ea280 Mon Sep 17 00:00:00 2001 From: Marcelo Zoccoler Date: Mon, 28 Jul 2025 10:17:11 +0200 Subject: [PATCH] Relax numpy upper version constraint in dependencies Removed the upper version limit for numpy in the dependencies list in pyproject.toml to allow compatibility with future numpy releases. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4336153..78586d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Visualization" ] dependencies = [ - "numpy>=1.22.0,<2.0.0", + "numpy>=1.22.0", "magicgui", "qtpy", "napari-matplotlib",