@@ -75,10 +75,10 @@ elif [[ "$DISTRIB" == "conda-pip-latest-tensorflow" ]]; then
75
75
python -m pip install numpy scipy scikit-learn pandas tensorflow
76
76
77
77
elif [[ " $DISTRIB " == " conda-latest-tensorflow" ]]; then
78
- make_conda " python=$PYTHON_VERSION numpy scipy scikit-learn pandas tensorflow"
78
+ make_conda " python=$PYTHON_VERSION numpy scipy scikit-learn pandas tensorflow"
79
79
80
80
elif [[ " $DISTRIB " == " conda-minimum-tensorflow" ]]; then
81
- TO_INSTALL=" $ python =$PYTHON_VERSION "
81
+ TO_INSTALL=" python=$PYTHON_VERSION "
82
82
TO_INSTALL=" $TO_INSTALL $( get_dep numpy $NUMPY_VERSION ) "
83
83
TO_INSTALL=" $TO_INSTALL $( get_dep scipy $SCIPY_VERSION ) "
84
84
TO_INSTALL=" $TO_INSTALL $( get_dep scikit-learn $SKLEARN_VERSION ) "
@@ -87,7 +87,7 @@ elif [[ "$DISTRIB" == "conda-minimum-tensorflow" ]]; then
87
87
make_conda $TO_INSTALL
88
88
89
89
elif [[ " $DISTRIB " == " conda-pip-latest-keras" ]]; then
90
- make_conda " =$PYTHON_VERSION "
90
+ make_conda " python =$PYTHON_VERSION "
91
91
python -m pip install -U pip
92
92
93
93
python -m pip install numpy scipy scikit-learn pandas keras
@@ -96,7 +96,7 @@ elif [[ "$DISTRIB" == "conda-latest-keras" ]]; then
96
96
make_conda " =$PYTHON_VERSION numpy scipy scikit-learn pandas keras"
97
97
98
98
elif [[ " $DISTRIB " == " conda-minimum-keras" ]]; then
99
- TO_INSTALL=" =$PYTHON_VERSION "
99
+ TO_INSTALL=" python =$PYTHON_VERSION "
100
100
TO_INSTALL=" $TO_INSTALL $( get_dep numpy $NUMPY_VERSION ) "
101
101
TO_INSTALL=" $TO_INSTALL $( get_dep scipy $SCIPY_VERSION ) "
102
102
TO_INSTALL=" $TO_INSTALL $( get_dep scikit-learn $SKLEARN_VERSION ) "
@@ -105,7 +105,7 @@ elif [[ "$DISTRIB" == "conda-minimum-keras" ]]; then
105
105
make_conda $TO_INSTALL
106
106
107
107
elif [[ " $DISTRIB " == " conda-pip-scipy-dev" ]]; then
108
- make_conda " =$PYTHON_VERSION "
108
+ make_conda " python =$PYTHON_VERSION "
109
109
python -m pip install -U pip
110
110
echo " Installing numpy and scipy master wheels"
111
111
dev_anaconda_url=https://pypi.anaconda.org/scipy-wheels-nightly/simple
0 commit comments