File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 31
31
32
32
# Release builds:
33
33
- PYTHON_VERSION="2.7" BUILD_SHARED_LIBS="yes"
34
- - PYTHON_VERSION="2.7" WITH_MPFR="yes" INTEGER_CLASS="gmpxx"
34
+ - PYTHON_VERSION="2.7" WITH_MPFR="yes" INTEGER_CLASS="gmpxx" WITH_NUMPY="no"
35
35
- PYTHON_VERSION="3.3" WITH_MPC="yes"
36
- - PYTHON_VERSION="3.4" WITH_MPFR="yes" WITH_NUMPY="yes"
37
- - PYTHON_VERSION="3.5" WITH_MPC="yes" WITH_NUMPY="yes"
38
- - PYTHON_VERSION="3.6" WITH_MPC="yes" WITH_NUMPY="yes"
36
+ - PYTHON_VERSION="3.4" WITH_MPFR="yes"
37
+ - PYTHON_VERSION="3.5" WITH_MPC="yes"
38
+ - PYTHON_VERSION="3.6" WITH_MPC="yes"
39
39
40
40
matrix :
41
41
exclude :
@@ -63,16 +63,16 @@ matrix:
63
63
- clang
64
64
- libstdc++-4.8-dev
65
65
- binutils-dev
66
- - env : BUILD_TYPE="Release" PYTHON_VERSION="2.7"
66
+ - env : BUILD_TYPE="Release" PYTHON_VERSION="2.7" WITH_NUMPY="no"
67
67
compiler : clang
68
68
os : linux
69
69
- env : BUILD_TYPE="Debug" PYTHON_VERSION="2.7"
70
70
compiler : clang
71
71
os : osx
72
- - env : BUILD_TYPE="Release" PYTHON_VERSION="3.5"
72
+ - env : BUILD_TYPE="Release" PYTHON_VERSION="3.5" WITH_NUMPY="no"
73
73
compiler : clang
74
74
os : osx
75
- - env : BUILD_TYPE="Debug" PYTHON_VERSION="2.7" WITH_NUMPY="yes "
75
+ - env : BUILD_TYPE="Debug" PYTHON_VERSION="2.7" WITH_NUMPY="no "
76
76
compiler : gcc
77
77
os : osx
78
78
- env : BUILD_TYPE="Release" PYTHON_VERSION="3.5"
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ environment:
29
29
- BUILD_TYPE : " Debug"
30
30
COMPILER : MinGW-w64
31
31
PYTHON_VERSION : 35-x64
32
+ WITH_NUMPY : no
32
33
33
34
install :
34
35
- set PYTHON_SOURCE_DIR=%CD%
@@ -63,6 +64,7 @@ install:
63
64
- set PATH=C:\Python%PYTHON_VERSION%;C:\Python%PYTHON_VERSION%\Scripts;%PATH%
64
65
- pip install nose pytest sympy
65
66
- pip install --install-option="--no-cython-compile" cython
67
+ - if NOT [%WITH_NUMPY%]==[no] pip install numpy
66
68
67
69
- set /p commit=<symengine_version.txt
68
70
- cd symengine-cpp
Original file line number Diff line number Diff line change 3
3
# symengine's bin/install_travis.sh will install miniconda
4
4
export conda_pkgs=" python=${PYTHON_VERSION} pip cython sympy nose pytest"
5
5
6
- if [[ " ${WITH_NUMPY} " == " yes " ]]; then
6
+ if [[ " ${WITH_NUMPY} " != " no " ]]; then
7
7
export conda_pkgs=" ${conda_pkgs} numpy" ;
8
8
fi
9
9
You can’t perform that action at this time.
0 commit comments