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

Commit 4b549b4

Browse files
committed
model: tensorflow: Temporary fix for scikit / scipy version conflict
Related: #737 Signed-off-by: John Andersen <[email protected]>
1 parent c173a9f commit 4b549b4

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

model/scikit/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
AUTHOR_NAME = "Yash Lamba"
1111
AUTHOR_EMAIL = "[email protected]"
1212
INSTALL_REQUIRES = [
13+
# See https://github.com/intel/dffml/issues/737
14+
"scipy==1.4.1",
1315
"scikit-learn>=0.21.2",
1416
"joblib>=0.13.2",
1517
"pandas>=0.25.0",

model/tensorflow/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@
6262
"Programming Language :: Python :: Implementation :: PyPy",
6363
],
6464
install_requires=INSTALL_REQUIRES,
65-
tests_require=["scikit-learn>=0.21.2"],
65+
tests_require=[
66+
# See https://github.com/intel/dffml/issues/737
67+
"scipy==1.4.1",
68+
"scikit-learn>=0.21.2",
69+
],
6670
packages=find_packages(),
6771
entry_points={
6872
"dffml.model": [

model/vowpalWabbit/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
AUTHOR_EMAIL = "[email protected]"
1212
INSTALL_REQUIRES = [
1313
"vowpalwabbit>=8.8.1",
14+
# See https://github.com/intel/dffml/issues/737
15+
"scipy==1.4.1",
1416
"scikit-learn>=0.21.2",
1517
"pandas>=0.25.0",
1618
] + (

0 commit comments

Comments
 (0)