This repository was archived by the owner on Feb 15, 2023. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
- REPO_DIR=scipy
4
4
- BUILD_COMMIT=v0.17.1
5
5
- PLAT=x86_64
6
+ # OSX build of scipy on Python 3.5 needs patched 1.7.1 wheel to avoid
7
+ # https://github.com/numpy/numpy/issues/6204. Patched numpy 1.7.1
8
+ # wheel for Python 3.5 at nipy manylinux URL.
6
9
- NP_BUILD_DEP="numpy==1.7.1"
7
10
- NP_TEST_DEP="numpy==1.7.1"
8
11
- UNICODE_WIDTH=32
@@ -48,13 +51,11 @@ matrix:
48
51
- os : linux
49
52
python : 3.5
50
53
env :
51
- - NP_BUILD_DEP=numpy==1.9.3
52
54
- NP_TEST_DEP=numpy==1.9.3
53
55
- os : linux
54
56
python : 3.5
55
57
env :
56
58
- PLAT=i686
57
- - NP_BUILD_DEP=numpy==1.9.3
58
59
- NP_TEST_DEP=numpy==1.9.3
59
60
- os : osx
60
61
language : objective-c
@@ -69,7 +70,6 @@ matrix:
69
70
language : objective-c
70
71
env :
71
72
- TRAVIS_PYTHON_VERSION=3.5
72
- - NP_BUILD_DEP=numpy==1.9.3
73
73
- NP_TEST_DEP=numpy==1.9.3
74
74
75
75
before_install :
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ function pre_build {
13
13
14
14
function run_tests {
15
15
# Runs tests on installed distribution from an empty directory
16
- if [ -n " $IS_OSX " ]; then
17
- python -c ' import scipy; scipy.test("full")'
18
- else # Test both architectures on OSX
16
+ if [ -n " $IS_OSX " ]; then # Test both architectures on OSX
19
17
arch -i386 python -c ' import scipy; scipy.test("full")'
20
18
arch -x86_64 python -c ' import scipy; scipy.test("full")'
19
+ else # Test both architectures on OSX
20
+ python -c ' import scipy; scipy.test("full")'
21
21
fi
22
22
# Show BLAS / LAPACK used
23
23
python -c ' import scipy; scipy.show_config()'
You can’t perform that action at this time.
0 commit comments