Skip VS2015/x86 builds

AppVeyor just added support for excluding specific jobs; thhis commit
cuts the number of builds down to 6 from 8 by eliminating the VS2015 x86
builds.
diff --git a/.appveyor.yml b/.appveyor.yml
index 0c8e193..2f849c4 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -14,6 +14,9 @@
   - CONDA: 27
 matrix:
   fast_finish: true  # Stop remaining jobs after a job failure
+  exclude:
+    - image: Visual Studio 2015
+      platform: x86
 install:
 - ps: |
     if ($env:PLATFORM -eq "x64") { $env:CMAKE_ARCH = "x64" }