From 3f36dd93f4842e45712f729219359d0c1b324455 Mon Sep 17 00:00:00 2001 From: DavAug Date: Thu, 4 Jul 2024 09:05:24 +0200 Subject: [PATCH] Fix scipy - arviz clash --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index eacc7577..8565e145 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( # Module name name='chi-drm', - version='1.0.0', + version='1.0.1', description='Package to model dose response dynamics', long_description=readme, long_description_content_type="text/markdown", @@ -36,8 +36,9 @@ 'pandas>=0.24', 'pints>=0.4', 'plotly>=4.8.1', + 'scipy<=1.12', # 07/2024 - ArviZ seems to not yet keep up with SciPy 'tqdm>=4.46.1', - 'xarray>=0.19' + 'xarray>=0.19', ], extras_require={ 'docs': [ @@ -49,4 +50,4 @@ 'jupyter==1.0.0', ] }, -) +) \ No newline at end of file