Stop explicitly dropping conda defaults on AppVeyor

This has started to fail on 64bit Windows with:

```
CondaKeyError: 'channels': value 'defaults' not present in config
```

See #4801. We might still want to do this for 32bit Windows?
This commit is contained in:
Peter Cock
2024-10-28 09:39:52 +00:00
committed by GitHub
parent e6b7b96430
commit cf7844c6e8

View File

@ -34,7 +34,6 @@ build_script:
- ps: Start-FileDownload "https://repo.continuum.io/miniconda/Miniconda$env:PY_MAJOR_VER-latest-Windows-$env:PYTHON_ARCH.exe" C:\Miniconda.exe; echo "Finished downloading miniconda"
- ps: start -Wait -FilePath C:\Miniconda.exe -ArgumentList "/S /D=C:\Py"
- SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH%
- conda config --remove channels defaults
- conda config --set always_yes yes
- conda update conda
- python -m pip install --upgrade coverage setuptools "numpy!=2.1.0"