@@ -41,18 +41,18 @@ conda config --set show_channel_urls True
41
41
conda config --set remote_connect_timeout_secs 12
42
42
@ rem Workaround for ARROW-13636
43
43
conda config --append disallowed_packages pypy3
44
+ @ rem Use conda-forge exclusively
45
+ conda config --add channels conda-forge
46
+ conda config --remove channels defaults
44
47
conda info -a
45
48
46
49
@ rem
47
50
@ rem Install Python to the base environment
48
51
@ rem
49
- conda install -q -y -c conda-forge python=%PYTHON% || exit /B
50
-
51
- @ rem Can't use conda-libmamba-solver 2.0.0
52
- conda config --set solver classic
52
+ conda install -q -y python=%PYTHON% || exit /B
53
53
54
54
@ rem Update for newer CA certificates
55
- conda update -q -y -c conda-forge - -all || exit /B
55
+ conda update -q -y --all || exit /B
56
56
57
57
@ rem
58
58
@ rem Create conda environment
@@ -66,11 +66,8 @@ if "%ARROW_BUILD_GANDIVA%" == "ON" (
66
66
)
67
67
@ rem Install pre-built "toolchain" packages for faster builds
68
68
set CONDA_PACKAGES = %CONDA_PACKAGES% --file=ci\conda_env_cpp.txt
69
- @ rem Force conda to use conda-forge
70
- conda config --add channels conda-forge
71
- conda config --remove channels defaults
72
69
@ rem Arrow conda environment
73
- conda create -n arrow -y -c conda-forge ^
70
+ conda create -q - n arrow -y ^
74
71
--file=ci\conda_env_python.txt ^
75
72
%CONDA_PACKAGES% ^
76
73
" ccache" ^
@@ -97,7 +94,6 @@ if "%ARROW_S3%" == "ON" (
97
94
appveyor DownloadFile https://dl.min.io/server/minio/release/windows-amd64/archive/minio.RELEASE.2024-09-13T20-26-02Z -FileName C:\Windows\Minio.exe || exit /B
98
95
)
99
96
100
-
101
97
@ rem
102
98
@ rem Download IANA Timezone Database for unit tests
103
99
@ rem
0 commit comments