From 2c1ffc4b744f56e52ce2eeccf83d56c199ce1eb9 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Sat, 21 Dec 2019 14:40:15 -0700 Subject: [PATCH] MNT: Fix appveyor builds Not sure why we were adding Cygwin to the PATH, but it breaks setuptools_scm. --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index e83ec5784e2..e79ad7ef156 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -21,7 +21,7 @@ install: { $env:CONDA_PATH="$($env:CONDA_PATH)37" } - ps: if($env:PLATFORM -eq 'x64') { $env:CONDA_PATH="$($env:CONDA_PATH)-x64" } - - ps: $env:path="$($env:CONDA_PATH);$($env:CONDA_PATH)\Scripts;$($env:CONDA_PATH)\Library\bin;C:\cygwin\bin;$($env:PATH)" + - ps: $env:path="$($env:CONDA_PATH);$($env:CONDA_PATH)\Scripts;$($env:CONDA_PATH)\Library\bin;$($env:PATH)" - cmd: conda config --set always_yes yes --set changeps1 no - cmd: conda update -q conda # Useful for debugging any issues with conda