Skip to content

Commit baf9421

Browse files
authored
python312Packages.equinox: 0.12.1 -> 0.12.2 (#408162)
2 parents 2615e4f + 8252fe3 commit baf9421

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

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

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
buildPythonPackage rec {
2424
pname = "equinox";
25-
version = "0.12.1";
25+
version = "0.12.2";
2626
pyproject = true;
2727

2828
src = fetchFromGitHub {
2929
owner = "patrick-kidger";
3030
repo = "equinox";
3131
tag = "v${version}";
32-
hash = "sha256-mw2fk+527b6Rx6FGe6QJf3ZbxZ3rjYFXKleX2g6AryU=";
32+
hash = "sha256-q/5gNXA8TnHwtm+krVBulHH3QMj9E2JVQgXJk6QYjUI=";
3333
};
3434

3535
# Relax speed constraints on tests that can fail on busy builders
@@ -56,16 +56,10 @@ buildPythonPackage rec {
5656
pytestCheckHook
5757
];
5858

59-
disabledTests =
60-
[
61-
# AssertionError: assert '<function te...n.<locals>.f>' == '<function f>'
62-
# https://github.com/patrick-kidger/equinox/issues/1008
63-
"test_function"
64-
]
65-
++ lib.optionals stdenv.hostPlatform.isDarwin [
66-
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
67-
"test_filter"
68-
];
59+
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
60+
# SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
61+
"test_filter"
62+
];
6963

7064
pythonImportsCheck = [ "equinox" ];
7165

0 commit comments

Comments
 (0)