Skip to content

Commit a9e585b

Browse files
committed
Remove test exclude conidition for LightFM
1 parent bb6e921 commit a9e585b

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

tests/models/test_serialization.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
import typing as tp
32
from tempfile import NamedTemporaryFile
43

@@ -35,11 +34,7 @@
3534
EXPOSABLE_MODEL_CLASSES = tuple(
3635
cls
3736
for cls in get_successors(ModelBase)
38-
if (
39-
cls.__module__.startswith("rectools.models")
40-
and cls not in INTERMEDIATE_MODEL_CLASSES
41-
and not (sys.version_info >= (3, 12) and cls is LightFMWrapperModel)
42-
)
37+
if (cls.__module__.startswith("rectools.models") and cls not in INTERMEDIATE_MODEL_CLASSES)
4338
)
4439
CONFIGURABLE_MODEL_CLASSES = tuple(cls for cls in EXPOSABLE_MODEL_CLASSES if cls not in (DSSMModel,))
4540

0 commit comments

Comments
 (0)