diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-12-23 13:53:49 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-28 16:24:35 -0700 |
commit | 4f7a60538eb031092ab84816afa56b51ee84f8bd (patch) | |
tree | 393d93e364ec60ca7b7243efd8056559fb6ef12c | |
parent | 76f2870e2f9c821b704ead165e13e173282f0aa9 (diff) | |
download | numpy-4f7a60538eb031092ab84816afa56b51ee84f8bd.tar.gz |
TST: Only use 32 bit Python 2.7 to test numpy on appveyor.
This avoids a test error on appveyor that might be fixed if Visual C++
Compiler for Python 2.7 is used. Numpy itself builds and runs on
appveyor with both 32 and 64 bit python 2.7, so this is only a test
issue. Another option might be to disable the test, but it may be useful
to some on other platforms.
Closes #6882.
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 68c3f279e..59389462d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ os: Visual Studio 2015 environment: matrix: - PY_MAJOR_VER: 2 - PYTHON_ARCH: "x86_64" + PYTHON_ARCH: "x86" - PY_MAJOR_VER: 3 PYTHON_ARCH: "x86_64" - PY_MAJOR_VER: 3 |