From 6649f2392cd086536ef7c68151e5821010f2c07a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 27 Feb 2024 08:29:18 +0100 Subject: [PATCH 1/2] python311Packages.tensordict: disable failing test on darwin --- pkgs/development/python-modules/tensordict/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/tensordict/default.nix b/pkgs/development/python-modules/tensordict/default.nix index 1c5bad17e8a0..384aee427791 100644 --- a/pkgs/development/python-modules/tensordict/default.nix +++ b/pkgs/development/python-modules/tensordict/default.nix @@ -10,6 +10,7 @@ , numpy , h5py , pytestCheckHook +, stdenv }: buildPythonPackage rec { @@ -53,6 +54,12 @@ buildPythonPackage rec { pytestCheckHook ]; + + # ModuleNotFoundError: No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package + disabledTestPaths = lib.optionals stdenv.isDarwin [ + "test/test_distributed.py" + ]; + meta = with lib; { description = "A pytorch dedicated tensor container"; changelog = "https://github.com/pytorch/tensordict/releases/tag/v${version}"; From 60fe64acc3225a8e3bc88b63085bdb8d1599f19a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 27 Feb 2024 07:51:24 +0100 Subject: [PATCH 2/2] python311Packages.tensordict: 0.3.0 -> 0.3.1 Diff: https://github.com/pytorch/tensordict/compare/refs/tags/v0.3.0...v0.3.1 Changelog: https://github.com/pytorch/tensordict/releases/tag/v0.3.1 --- pkgs/development/python-modules/tensordict/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tensordict/default.nix b/pkgs/development/python-modules/tensordict/default.nix index 384aee427791..6c64ca00c5ee 100644 --- a/pkgs/development/python-modules/tensordict/default.nix +++ b/pkgs/development/python-modules/tensordict/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "tensordict"; - version = "0.3.0"; + version = "0.3.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "pytorch"; repo = "tensordict"; rev = "refs/tags/v${version}"; - hash = "sha256-XTFUzPs/fqX3DPtu/qSE1hY+7r/HToPVPaTyVRzDT/E="; + hash = "sha256-eCx1r7goqOdGX/0mSGCiLhdGQTh4Swa5aFiLSsL56p0="; }; nativeBuildInputs = [ @@ -54,6 +54,12 @@ buildPythonPackage rec { pytestCheckHook ]; + # RuntimeError: internal error + disabledTests = lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [ + "test_add_scale_sequence" + "test_modules" + "test_setattr" + ]; # ModuleNotFoundError: No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package disabledTestPaths = lib.optionals stdenv.isDarwin [