python311Packages.jax: exclude from bulk updates

The jax-0.4.25 and jaxlib-0.4.25 luckily pointed to the same commit here.
This commit is contained in:
Martin Weinelt
2024-03-25 15:35:45 +01:00
parent ea503179c5
commit 04aa995e2a
@@ -38,7 +38,7 @@ buildPythonPackage rec {
owner = "google";
repo = "jax";
# google/jax contains tags for jax and jaxlib. Only use jax tags!
rev = "refs/tags/jaxlib-v${version}";
rev = "refs/tags/jax-v${version}";
hash = "sha256-poQQo2ZgEhPYzK3aCs+BjaHTNZbezJAECd+HOdY1Yok=";
};
@@ -144,6 +144,9 @@ buildPythonPackage rec {
};
};
# updater fails to pick the correct branch
passthru.skipBulkUpdate = true;
meta = with lib; {
description = "Differentiate, compile, and transform Numpy code";
homepage = "https://github.com/google/jax";