diff options
author | Pol Dellaiera | 2024-05-08 06:27:20 +0200 |
---|---|---|
committer | GitHub | 2024-05-08 06:27:20 +0200 |
commit | 2926a2204fe63e94d9f8f29cee4393870a941344 (patch) | |
tree | 52f5532467c5d1d21bcd14e3ed83e054b81906dd /pkgs | |
parent | 6ca5c1af46c067088883de0191635c603a898b8d (diff) | |
parent | 4aee1c1c8748fc1324586fa197705fb60ce413bf (diff) |
Merge pull request #309968 from GaetanLepage/torchrl-arm
python311Packages.torchrl: mark as broken on aarch64-linux
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/python-modules/torchrl/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/torchrl/default.nix b/pkgs/development/python-modules/torchrl/default.nix index 6378b0c4f70a..76592f6adf7a 100644 --- a/pkgs/development/python-modules/torchrl/default.nix +++ b/pkgs/development/python-modules/torchrl/default.nix @@ -36,6 +36,7 @@ , pytestCheckHook , pyyaml , scipy +, stdenv }: buildPythonPackage rec { @@ -161,5 +162,7 @@ buildPythonPackage rec { changelog = "https://github.com/pytorch/rl/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ GaetanLepage ]; + # ~3k tests fail with: RuntimeError: internal error + broken = stdenv.isLinux && stdenv.isAarch64; }; } |