From 5c6558fa0790e527295653aec8241b9f7955d4d5 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Sat, 30 Sep 2023 10:12:43 -0400 Subject: [PATCH] Add support for Numba 0.58 Implements #506 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f1ec4f91b..1438a437a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ classifiers = [ requires-python = ">=3.7" dependencies = [ "numpy >= 1.21.0, < 1.25", # v1.21.0 is needed for dtype support of ufuncs, see https://numpy.org/devdocs/release/1.21.0-notes.html#ufunc-signature-and-dtype-generalization-and-casting - "numba >= 0.55, < 0.58", # v0.55 is needed for support of NumPy 1.21 + "numba >= 0.55, < 0.59", # v0.55 is needed for support of NumPy 1.21 "typing_extensions >= 4.0.0", # v4.0.0 is needed for use of Self (Python 3.11+) and Literal (Python 3.8+) ] dynamic = ["version"]