We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc46ba9 + 4094484 commit 3ce721aCopy full SHA for 3ce721a
pkgs/development/python-modules/pytorch-pfn-extras/default.nix
@@ -17,6 +17,7 @@
17
onnx,
18
pytestCheckHook,
19
torchvision,
20
+ pythonAtLeast,
21
}:
22
23
buildPythonPackage rec {
@@ -60,7 +61,11 @@ buildPythonPackage rec {
60
61
# where 4 = <MagicMock id='140733587469184'>.call_count
62
"test_lr_scheduler_wait_for_first_optimizer_step"
63
]
- ++ lib.optionals (stdenv.hostPlatform.isDarwin) [
64
+ ++ lib.optionals (pythonAtLeast "3.13") [
65
+ # RuntimeError: Dynamo is not supported on Python 3.13+
66
+ "test_register"
67
+ ]
68
+ ++ lib.optionals stdenv.hostPlatform.isDarwin [
69
# torch.distributed is not available on darwin
70
"test_create_distributed_evaluator"
71
"test_distributed_evaluation"
0 commit comments