From 3ce33c5c9395bf84d818bb856d9ca649313156c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:17:46 -0500 Subject: [PATCH] relax numba dependency (#2122) (#2127) Co-authored-by: Bruce Martin --- apis/python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/python/setup.py b/apis/python/setup.py index 46b540dc3a..e21a4f9a69 100644 --- a/apis/python/setup.py +++ b/apis/python/setup.py @@ -281,9 +281,9 @@ def run(self): # Tracked in https://github.com/single-cell-data/TileDB-SOMA/issues/1785 "anndata != 0.10.0; python_version>='3.8'", "attrs>=22.2", - "numba~=0.58.0; python_version>='3.8'", + "numba>=0.58.0; python_version>='3.8'", # Older numba version needed for Python3.7. - # This older numba version was also incompatble with newer numpy + # This older numba version was also incompatible with newer numpy # versions, and the old pip solver (<=2020) needed us to explicate # that constraint here (issue #1051). "numba==0.56.4; python_version<'3.8'",