Skip to content

Commit 0bc912b

Browse files
authored
Fix CI
1 parent 8157e6a commit 0bc912b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/install_travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# symengine's bin/install_travis.sh will install miniconda
44

5-
export conda_pkgs="python=${PYTHON_VERSION} pip 'cython>=0.29.24' pytest gmp mpfr"
5+
export conda_pkgs="python=${PYTHON_VERSION} pip pytest gmp mpfr"
66

77
if [[ "${WITH_NUMPY}" != "no" ]]; then
88
export conda_pkgs="${conda_pkgs} numpy";
@@ -27,7 +27,7 @@ if [[ "${WITH_SAGE}" == "yes" ]]; then
2727
export conda_pkgs="${conda_pkgs} sage=8.1";
2828
fi
2929

30-
conda install -q ${conda_pkgs}
30+
conda install -q ${conda_pkgs} "cython>=0.29.24"
3131

3232
if [[ "${WITH_SYMPY}" != "no" ]]; then
3333
pip install sympy;

0 commit comments

Comments
 (0)