From bcb5313a6de5284840d51a0ef224a250f0a5f023 Mon Sep 17 00:00:00 2001 From: Israel Martinez Date: Mon, 24 Jun 2024 14:26:27 -0400 Subject: [PATCH] Require astromodels >=2.4.2 to fix this issue https://github.com/threeML/astromodels/issues/201. Also, interpolation now fixed this other issue https://github.com/EconForge/interpolation.py/pull/112, which allows to remove the restriction on numba (which is needed for astromodels 2.4.2) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2670df35..c124d5e6 100644 --- a/setup.py +++ b/setup.py @@ -25,10 +25,10 @@ install_requires = ["histpy", "mhealpy", "scoords", - 'astromodels', + 'astromodels>=2.4.2', 'threeml>=2.1.2', 'matplotlib<=3.8.3', - 'numba<=0.58.0', + 'numba', 'yayc', 'awscli'], description = "High-level analysis for the COSI telescope data",