Skip to content

Commit 42a2f6b

Browse files
committed
Try to fix failure detected with GA
1 parent 1834029 commit 42a2f6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

noxfile.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ def test(session, with_pythran, with_cython):
2121
if session.python is not None
2222
else sys.version.split(maxsplit=1)[0]
2323
)
24-
if version.parse(py_version) < version.parse("3.12"):
24+
if version.parse(py_version) < version.parse("3.13"):
25+
# Numba not yet compatible with 3.13 (2024-12-02)
2526
session.install("numba")
26-
else:
27-
session.install("setuptools")
2827

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

@@ -34,6 +33,7 @@ def test(session, with_pythran, with_cython):
3433
session.install("cython")
3534

3635
if version.parse(py_version) < version.parse("3.12"):
36+
session.install("setuptools<60.0")
3737
for backend in ("python", "pythran"):
3838
print(f"TRANSONIC_BACKEND={backend}")
3939
session.run(

0 commit comments

Comments
 (0)