Skip to content

Commit

Permalink
Try to fix failure detected with GA
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Dec 2, 2024
1 parent 1834029 commit 5f0a377
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ def test(session, with_pythran, with_cython):
if session.python is not None
else sys.version.split(maxsplit=1)[0]
)
if version.parse(py_version) < version.parse("3.12"):
if version.parse(py_version) < version.parse("3.13"):
# Numba not yet compatible with 3.13 (2024-12-02)
session.install("numba")
else:
session.install("setuptools")

session.install("jax", "jaxlib")

Expand All @@ -33,6 +32,8 @@ def test(session, with_pythran, with_cython):
if with_cython:
session.install("cython")

session.install("setuptools<60.0")

if version.parse(py_version) < version.parse("3.12"):
for backend in ("python", "pythran"):
print(f"TRANSONIC_BACKEND={backend}")
Expand Down

0 comments on commit 5f0a377

Please sign in to comment.