From 1b5a17daedb819b6d0be571598a1384a8a9befc5 Mon Sep 17 00:00:00 2001 From: Fabian Isensee Date: Wed, 21 Feb 2024 21:48:45 +0100 Subject: [PATCH] be more restrictive with dependencies that may have breaking changes in the future --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dd9dd7c72..9a4c4cd13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,8 +31,8 @@ keywords = [ ] dependencies = [ "torch>=2.0.0", - "acvl-utils>=0.2", - "dynamic-network-architectures>=0.4", + "acvl-utils>=0.2,<0.3", # 0.3 may bring breaking changes. Careful! + "dynamic-network-architectures>=0.2,<0.4", # 0.3.1 and lower are supported, 0.4 may have breaking changes. Let's be careful here "tqdm", "dicom2nifti", "scipy",