Skip to content

Commit

Permalink
Bump up NUMBA version used in tests to 0.59.1
Browse files Browse the repository at this point in the history
Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
  • Loading branch information
JanuszL committed May 1, 2024
1 parent 80b67f9 commit 3767f7a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion qa/setup_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,19 @@ def get_pyvers_name(self, url, cuda_version):
links_index=("https://storage.googleapis.com/" "jax-releases/jax_cuda_releases.html"),
),
CudaPackage(
"numba", {"110": [PckgVer("0.57.0", python_min_ver="3.8", dependencies=["numpy<1.24"])]}
"numba",
{
"110": [
# the more recent NUMBA doesn't support python 3.8 so keep it for this version here
PckgVer(
"0.57.0",
python_min_ver="3.8",
python_max_ver="3.8",
dependencies=["numpy<1.24"],
),
PckgVer("0.59.1", python_min_ver="3.9", dependencies=["numpy<1.24"]),
]
},
),
]

Expand Down

0 comments on commit 3767f7a

Please sign in to comment.