python311Packages.flax: 0.8.4 -> 0.8.5

Diff: https://github.com/google/flax/compare/refs/tags/v0.8.4...v0.8.5

Changelog: https://github.com/google/flax/releases/tag/v0.8.5
This commit is contained in:
Gaetan Lepage
2024-06-26 11:51:05 +02:00
parent 1ecc3cd35b
commit 620cfcbbee
@@ -1,32 +1,40 @@
{
lib,
buildPythonPackage,
cloudpickle,
einops,
pythonOlder,
fetchFromGitHub,
jax,
# build-system
jaxlib,
keras,
matplotlib,
pythonRelaxDepsHook,
setuptools-scm,
# dependencies
jax,
msgpack,
numpy,
optax,
orbax-checkpoint,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
pyyaml,
rich,
setuptools-scm,
tensorflow,
tensorstore,
typing-extensions,
# checks
cloudpickle,
einops,
keras,
pytest-xdist,
pytestCheckHook,
tensorflow,
# optional-dependencies
matplotlib,
}:
buildPythonPackage rec {
pname = "flax";
version = "0.8.4";
version = "0.8.5";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -35,7 +43,7 @@ buildPythonPackage rec {
owner = "google";
repo = "flax";
rev = "refs/tags/v${version}";
hash = "sha256-ZwqKZdJ9LOfWTav5nE9xMsMw/DbryqQUuu5fqeugBzY=";
hash = "sha256-6WOFq0758gtNdrlWqSQBlKmWVIGe5e4PAaGrvHoGjr0=";
};
build-system = [