From cd09709f3cb620b20914e27a6664a4cdc11f54e5 Mon Sep 17 00:00:00 2001 From: Igor Tatarnikov Date: Mon, 19 Aug 2024 11:07:58 +0100 Subject: [PATCH] Unpin numpy, pin keras to latest release with numpy 2 compatiblity --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1b96f344..0a58cc61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,10 +27,10 @@ dependencies = [ "fancylog>=0.0.7", "natsort", "numba", - "numpy<2", + "numpy", "scikit-image", "scikit-learn", - "keras>=3.0.0", + "keras>=3.5.0", "torch>=2.1.0", "tifffile", "tqdm",