Skip to content

Commit 3899b76

Browse files
committed
Increased numba version.
1 parent 2d20da5 commit 3899b76

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

interpolation/compat.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@
22

33
from numba import __version__
44

5-
if parse(__version__) >= parse("0.43"):
6-
overload_options = {"strict": False}
7-
else:
8-
overload_options = {}
5+
overload_options = {"strict": False}
96

10-
if parse(__version__) >= parse("0.49"):
11-
from numba.core.types import Array, Float, Integer
12-
from numba.core.types import Tuple, UniTuple
13-
else:
14-
from numba.types import Array, Float, Integer
15-
from numba.types.containers import Tuple, UniTuple
7+
from numba.core.types import Array, Float, Integer
8+
from numba.core.types import Tuple, UniTuple

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ license = "BSD-2-Clause"
1515

1616
[tool.poetry.dependencies]
1717
python = ">=3.9"
18-
numba = ">=0.57"
18+
numba = ">=0.59.1"
1919
scipy = "^1.10"
2020

2121
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)