From 4125c43ca5c5282423cfc946d48ebfe7a4e9a951 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 16 Oct 2025 10:44:06 -0700 Subject: [PATCH] python3Packages.torch-geometric: disable test that fails on some Darwin configurations --- pkgs/development/python-modules/torch-geometric/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/torch-geometric/default.nix b/pkgs/development/python-modules/torch-geometric/default.nix index 35e96a4ca46d..18800e8304b9 100644 --- a/pkgs/development/python-modules/torch-geometric/default.nix +++ b/pkgs/development/python-modules/torch-geometric/default.nix @@ -246,6 +246,10 @@ buildPythonPackage rec { # RuntimeError: Boolean value of Tensor with more than one value is ambiguous "test_feature_store" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + # NotImplementedError: The operator 'aten::logspace.out' is not currently implemented for the MPS device. + "test_positional_encoding" ]; meta = {