From b11a60ccc2fcc58a428e263166cd1f6838f5f187 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Mon, 13 Jun 2016 15:35:54 -0400 Subject: [PATCH] add 32bit architectures for windows --- appveyor.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index efb266f..532ba3d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,6 +11,15 @@ environment: matrix: # Note: Because we have to separate the py2 and py3 components due to compiler version, we have a race condition for non-python packages. # Not sure how to resolve this, but maybe we should be tracking the VS version in the build string anyway? + - TARGET_ARCH: "x86" + CONDA_PY: "27" + PY_CONDITION: "python >=2.7,<3" + - TARGET_ARCH: "x86" + CONDA_PY: "34" + PY_CONDITION: "python >=3.4,<3.5" + - TARGET_ARCH: "x86" + CONDA_PY: "35" + PY_CONDITION: "python >=3.5" - TARGET_ARCH: "x64" CONDA_PY: "27" PY_CONDITION: "python >=2.7,<3"