From 4b9508ea6bbe5498069b1d76ad2c3636f67e3184 Mon Sep 17 00:00:00 2001 From: Mauricio DIAZ Date: Wed, 25 Aug 2021 11:35:39 +0200 Subject: [PATCH] Fix dependencies in setup.py --- setup.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8f6c4ba63..68f9b3338 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,14 @@ "Intended Audience :: Developers", "Programming Language :: Python", ], - install_requires=["numpy>=1.17", "clinica>=0.3.8", "torch", "tensorboard"], - python_requires=">=3.6", + install_requires=[ + "numpy>=1.17", + "clinica==0.4.1", + "torch>=1.8", + "tensorboard", + "toml", + "click>=7.0", + "pynvml", + ], + python_requires=">=3.7", )