python3Packages.x-transformers: disable failing test on python 3.14

This commit is contained in:
Sarah Clark
2026-01-25 15:30:26 -08:00
parent 90e0b24f27
commit e7e21246b3
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
hatchling,
@@ -41,6 +42,9 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
# RuntimeError: torch.compile is not supported on Python 3.14+
disabledTests = lib.optionals (pythonAtLeast "3.14") [ "test_up" ];
pythonImportsCheck = [ "x_transformers" ];
meta = {