File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 4444 bash ci/build_unix.sh
4545 - job : Windows
4646 pool :
47- vmImage : windows-2019
47+ vmImage : windows-2022
4848 strategy :
4949 matrix :
5050 windows_py310 :
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ set -ex
22
33PYTHON_VERSION=" ${PYTHON_VERSION:- 3.10} "
44
5- conda config --add channels conda-forge
6- conda config --remove channels defaults || true
75conda config --show
86conda create \
97 --quiet --yes \
8+ --override-channels \
9+ -c conda-forge -c nodefaults \
1010 --name vigra \
1111 python=${PYTHON_VERSION} pytest c-compiler cxx-compiler \
1212 zlib libjpeg-turbo libpng libtiff hdf5 fftw \
13- boost boost-cpp numpy h5py sphinx \
13+ libboost-python libboost-python-devel numpy h5py sphinx \
1414 openexr lemon cmake make ruff
1515
1616if [[ ` uname` == ' Darwin' ]]; then
Original file line number Diff line number Diff line change 22call conda info
33if errorlevel 1 exit 1
44
5- call conda config --add channels conda-forge
6- if errorlevel 1 exit 1
7- call conda config --remove channels defaults || true
8- if errorlevel 1 exit 1
95call conda config --show
106if errorlevel 1 exit 1
117
128call conda create ^
9+ --override-channels ^
10+ -c conda-forge ^
11+ -c nodefaults ^
1312 --quiet --yes ^
1413 --name vigra ^
1514 python=%PYTHON_VERSION% pytest c-compiler cxx-compiler ^
1615 zlib libjpeg-turbo libpng libtiff hdf5 fftw cmake ninja ^
17- boost boost-cpp numpy h5py sphinx ^
16+ libboost-python libboost-python-devel numpy h5py sphinx ^
1817 openexr lemon
1918
2019if errorlevel 1 exit 1
You can’t perform that action at this time.
0 commit comments