From d6a6bcbb9bed2968fd0aa285fa9f3a092276791f Mon Sep 17 00:00:00 2001 From: Mike Croucher Date: Thu, 7 Jul 2016 10:35:11 +0100 Subject: [PATCH] Appveyor bug fix --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cd9bc881..e73f5d21 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,9 +16,9 @@ install: - "conda create -q -n build-environment python=%PYTHON_VERSION% numpy scipy matplotlib" - activate build-environment # We need wheel installed to build wheels - - "%PYTHON%\\python.exe -m pip install wheel" + - python -m pip install wheel" # GPy needs paramz - - "%PYTHON%\\python.exe -m pip install paramz" + - python -m pip install paramz" build: off