From 0551c22184d02aa3108e24f4a57b11e459ffd512 Mon Sep 17 00:00:00 2001 From: LorenzLamm <34575029+LorenzLamm@users.noreply.github.com> Date: Wed, 26 Jun 2024 09:47:33 +0200 Subject: [PATCH] fix numpy < 2.0.0 (#72) --- pyproject.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 450f94e..3115f66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,16 +25,17 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ + "imageio", + "mrcfile", "monai", + "numpy<2.0.0", + "pandas", "pytorch-lightning", - "torch", - "imageio", - "scipy", - "typer[all]", "scikit-image", + "scipy", "simpleitk", - "pandas", - "mrcfile", + "torch", + "typer[all]", ]