File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,9 @@ matrix:
66
66
- env : BUILD_TYPE="Release" PYTHON_VERSION="2.7" WITH_NUMPY="no"
67
67
compiler : clang
68
68
os : linux
69
+ - env : BUILD_TYPE="Debug" PYTHON_VERSION="3.6" WITH_SYMPY="no"
70
+ compiler : gcc
71
+ os : linux
69
72
- env : BUILD_TYPE="Debug" PYTHON_VERSION="2.7"
70
73
compiler : clang
71
74
os : osx
Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ environment:
42
42
COMPILER : MinGW-w64
43
43
PYTHON_VERSION : 35-x64
44
44
WITH_NUMPY : no
45
+ - BUILD_TYPE : " Debug"
46
+ COMPILER : MinGW-w64
47
+ PYTHON_VERSION : 36-x64
48
+ WITH_SYMPY : no
45
49
46
50
install :
47
51
- set PYTHON_SOURCE_DIR=%CD%
@@ -76,9 +80,10 @@ install:
76
80
- if NOT [%COMPILER%]==[MSVC15] 7z x -aoa -oC:\ pylibs.7z > NUL
77
81
78
82
- set PATH=C:\Python%PYTHON_VERSION%;C:\Python%PYTHON_VERSION%\Scripts;%PATH%
79
- - pip install nose pytest sympy
83
+ - pip install nose pytest
80
84
- pip install --install-option="--no-cython-compile" cython
81
85
- if NOT [%WITH_NUMPY%]==[no] pip install numpy
86
+ - if NOT [%WITH_SYMPY%]==[no] pip install sympy
82
87
83
88
- set /p commit=<symengine_version.txt
84
89
- 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
conda update -q -n root conda
5
5
6
- export conda_pkgs=" python=${PYTHON_VERSION} pip cython sympy nose pytest"
6
+ export conda_pkgs=" python=${PYTHON_VERSION} pip cython nose pytest"
7
+
8
+ if [[ " ${WITH_SYMPY} " != " no" ]]; then
9
+ export conda_pkgs=" ${conda_pkgs} sympy" ;
10
+ fi
7
11
8
12
if [[ " ${WITH_NUMPY} " != " no" ]]; then
9
13
export conda_pkgs=" ${conda_pkgs} numpy" ;
You can’t perform that action at this time.
0 commit comments