Skip to content
Snippets Groups Projects
Commit 32ad3660f85b authored by Pierre Augier's avatar Pierre Augier
Browse files

Try to fix failure detected with GA

parent 4da6c3dbbc29
No related branches found
No related tags found
1 merge request!145transonic 0.7.3 for py>3.10, beniget~=0.4.2 and gast~=0.6.0
Pipeline #93854 passed
......@@ -21,5 +21,6 @@
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")
......@@ -25,6 +26,4 @@
session.install("numba")
else:
session.install("setuptools")
session.install("jax", "jaxlib")
......@@ -34,6 +33,7 @@
session.install("cython")
if version.parse(py_version) < version.parse("3.12"):
session.install("setuptools<60.0")
for backend in ("python", "pythran"):
print(f"TRANSONIC_BACKEND={backend}")
session.run(
......
......@@ -5,7 +5,7 @@
groups = ["default", "base-test", "dev", "doc", "mpi", "test"]
strategy = ["inherit_metadata"]
lock_version = "4.5.0"
content_hash = "sha256:21298ee8d200597ff55b470ab3d98f9f229c9024741e058498504b4ac85f77f0"
content_hash = "sha256:9fc81c9096e7027cf12f6873da8d584002087889daf7691fb6c463cf6ed7ea6b"
[[metadata.targets]]
requires_python = ">=3.10"
......@@ -2811,7 +2811,7 @@
version = "75.6.0"
requires_python = ">=3.9"
summary = "Easily download, build, install, upgrade, and uninstall Python packages"
groups = ["doc", "test"]
groups = ["base-test", "doc", "test"]
files = [
{file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"},
{file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"},
......
......@@ -53,6 +53,8 @@
"pytest-cov",
"pytest-venv",
"scipy",
# setuptools for transonic.dist
"setuptools",
"-e transonic_testing @ file:///${PROJECT_ROOT}/_transonic_testing",
]
test = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment