Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 4e71401

Browse files
committed
plugins: Fix daal4py exclude for 3.8
Signed-off-by: John Andersen <[email protected]>
1 parent 4fffba4 commit 4e71401

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

dffml/plugins.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,10 @@ def check_daal4py():
6868

6969
# Plugins which currently don't support Python 3.8
7070
if sys.version_info.major == 3 and sys.version_info.minor < 8:
71-
CORE_PLUGIN_DEPS[("model", "daal4py")] = (
72-
{
73-
# Must be installed already via conda, do not provide a pypi package yet
74-
"daal4py": check_daal4py
75-
},
76-
)
71+
CORE_PLUGIN_DEPS[("model", "daal4py")] = {
72+
# Must be installed already via conda, do not provide a pypi package yet
73+
"daal4py": check_daal4py
74+
}
7775

7876
# All packages under configloader/ are really named dffml-config-{name}
7977
ALTERNATIVES = {"configloader": "config"}

0 commit comments

Comments
 (0)