File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
77if [[ " ${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" ;
2828fi
2929
30- conda install -q ${conda_pkgs}
30+ conda install -q ${conda_pkgs} " cython>=0.29.24 "
3131
3232if [[ " ${WITH_SYMPY} " != " no" ]]; then
3333 pip install sympy;
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ macro(ADD_PYTHON_LIBRARY name)
130130 configure_file (${CMAKE_SOURCE_DIR} /cmake/version_script.txt
131131 ${CMAKE_CURRENT_BINARY_DIR} /version_script_${name} .txt @ONLY)
132132 set_property (TARGET ${name} APPEND_STRING PROPERTY
133- LINK_FLAGS " -Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR} /version_script_${name} .txt" )
133+ LINK_FLAGS " \" -Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR} /version_script_${name} .txt\" " )
134134 ELSE ()
135135 add_library (${name} SHARED ${ARGN} )
136136 ENDIF ()
You can’t perform that action at this time.
0 commit comments