Skip to content

Commit

Permalink
MNT: Fix appveyor builds
Browse files Browse the repository at this point in the history
Not sure why we were adding Cygwin to the PATH, but it breaks
setuptools_scm.
  • Loading branch information
dopplershift committed Dec 21, 2019
1 parent c48061f commit 2c1ffc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -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
Expand Down

0 comments on commit 2c1ffc4

Please sign in to comment.