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 2
2
3
3
# symengine's bin/install_travis.sh will install miniconda
4
4
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"
6
6
7
7
if [[ " ${WITH_NUMPY} " != " no" ]]; then
8
8
export conda_pkgs=" ${conda_pkgs} numpy" ;
@@ -27,7 +27,7 @@ if [[ "${WITH_SAGE}" == "yes" ]]; then
27
27
export conda_pkgs=" ${conda_pkgs} sage=8.1" ;
28
28
fi
29
29
30
- conda install -q ${conda_pkgs}
30
+ conda install -q ${conda_pkgs} " cython>=0.29.24 "
31
31
32
32
if [[ " ${WITH_SYMPY} " != " no" ]]; then
33
33
pip install sympy;
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ macro(ADD_PYTHON_LIBRARY name)
130
130
configure_file (${CMAKE_SOURCE_DIR} /cmake/version_script.txt
131
131
${CMAKE_CURRENT_BINARY_DIR} /version_script_${name}.txt @ONLY )
132
132
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\" " )
134
134
ELSE ()
135
135
add_library (${name} SHARED ${ARGN} )
136
136
ENDIF ()
You can’t perform that action at this time.
0 commit comments