From 9548734ff22aafe9eca7aa5a162dc93c4a52d25c Mon Sep 17 00:00:00 2001 From: Daniel Weilandt Date: Tue, 10 May 2022 20:01:27 -0400 Subject: [PATCH] FIX: Freshly broken Dependencies --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 53b9c40..1933242 100644 --- a/setup.py +++ b/setup.py @@ -50,8 +50,7 @@ author_email='softwares.lcsb@epfl.ch', url='https://github.com/EPFL-LCSB/skimpy/', download_url='https://github.com/EPFL-LCSB/skimpy/archive/'+version_tag+'.tar.gz', - install_requires=['sympy', - 'pytest', + install_requires=['pytest', 'scipy', 'numpy', 'pandas', @@ -65,6 +64,8 @@ 'escher', 'matplotlib', 'pytfa', + 'sympy <= 1.5', + 'cobra <= 0.24.0', ], packages = find_packages(), python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',