From 6417b7a0887ca85d3a6a298f11bf0af45a31fc88 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 5 Oct 2025 14:54:00 -0700 Subject: [PATCH] python3Packages.torch-geometric: disable tests that fail on Darwin "RuntimeError: no response from torch_shm_manager". --- .../python-modules/torch-geometric/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/development/python-modules/torch-geometric/default.nix b/pkgs/development/python-modules/torch-geometric/default.nix index 4557ecfe0648..96236ce22b5d 100644 --- a/pkgs/development/python-modules/torch-geometric/default.nix +++ b/pkgs/development/python-modules/torch-geometric/default.nix @@ -191,6 +191,17 @@ buildPythonPackage rec { # This test uses `torch.jit` which might not be working on darwin: # RuntimeError: required keyword attribute 'value' has the wrong type "test_traceable_my_conv_with_self_loops" + + # RuntimeError: no response from torch_shm_manager + "test_data_loader" + "test_data_share_memory" + "test_dataloader" + "test_edge_index_dataloader" + "test_heterogeneous_dataloader" + "test_index_dataloader" + "test_multiprocessing" + "test_share_memory" + "test_storage_tensor_methods" ] ++ lib.optionals (pythonAtLeast "3.13") [ # RuntimeError: Dynamo is not supported on Python 3.13+