Skip to content

Commit 073c239

Browse files
authored
python312Packages.keras: disable failing test (#369263)
2 parents 2084726 + 2a676fc commit 073c239

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkgs/development/python-modules/keras/default.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ buildPythonPackage rec {
3939
src = fetchFromGitHub {
4040
owner = "keras-team";
4141
repo = "keras";
42-
rev = "refs/tags/v${version}";
42+
tag = "v${version}";
4343
hash = "sha256-qidY1OmlOYPKVoxryx1bEukA7IS6rPV4jqlnuf3y39w=";
4444
};
4545

@@ -86,6 +86,10 @@ buildPythonPackage rec {
8686

8787
# TypeError: this __dict__ descriptor does not support '_DictWrapper' objects
8888
"test_reloading_default_saved_model"
89+
90+
# ValueError: The truth value of an empty array is ambiguous.
91+
# Use `array.size > 0` to check that an array is not empty.
92+
"test_min_max_norm"
8993
]
9094
++ lib.optionals stdenv.isDarwin [
9195
# AttributeError: module 'numpy' has no attribute 'float128'. Did you mean: 'float16'?

0 commit comments

Comments
 (0)