Skip to content

Commit

Permalink
try to fix the conda HTTP error on the appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
c-f-h committed Jan 20, 2023
1 parent a29130e commit e48064b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ init:

install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- "conda create -q -n test-environment python=%PYTHON_VERSION% wheel setuptools Cython pytest %MSVC_RUNTIME% numpy scipy matplotlib"
- conda config --set always_yes yes --set changeps1 no --set ssl_verify no
- activate
- "conda create -q -n test-environment python=%PYTHON_VERSION%"
- activate test-environment
- "conda install wheel setuptools Cython pytest %MSVC_RUNTIME% numpy scipy matplotlib"

build: off

Expand Down

0 comments on commit e48064b

Please sign in to comment.