File tree Expand file tree Collapse file tree 6 files changed +39
-1
lines changed Expand file tree Collapse file tree 6 files changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ runs:
18
18
if : ${{ inputs.pyarrow-version }}
19
19
20
20
- name : Install ${{ inputs.environment-file }}
21
- uses : conda-incubator/setup-miniconda@v2
21
+ uses : conda-incubator/setup-miniconda@v2.1.1
22
22
with :
23
23
environment-file : ${{ inputs.environment-file }}
24
24
channel-priority : ${{ runner.os == 'macOS' && 'flexible' || 'strict' }}
25
25
channels : conda-forge
26
26
mamba-version : " 0.23"
27
27
use-mamba : true
28
+ condarc-file : ci/condarc.yml
Original file line number Diff line number Diff line change 47
47
channel-priority : strict
48
48
environment-file : ${{ env.ENV_FILE }}
49
49
use-only-tar-bz2 : true
50
+ condarc-file : ci/condarc.yml
50
51
51
52
- name : Run benchmarks
52
53
id : bench
Original file line number Diff line number Diff line change 66
66
channel-priority : strict
67
67
environment-file : ${{ env.ENV_FILE }}
68
68
use-only-tar-bz2 : true
69
+ condarc-file : ci/condarc.yml
69
70
70
71
- name : Build Pandas
71
72
id : build
@@ -135,6 +136,7 @@ jobs:
135
136
channel-priority : strict
136
137
environment-file : ${{ env.ENV_FILE }}
137
138
use-only-tar-bz2 : true
139
+ condarc-file : ci/condarc.yml
138
140
139
141
- name : Build Pandas
140
142
id : build
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ jobs:
155
155
channel-priority : flexible
156
156
environment-file : ${{ env.ENV_FILE }}
157
157
use-only-tar-bz2 : true
158
+ condarc-file : ci/condarc.yml
158
159
159
160
- name : Upgrade Arrow version
160
161
run : conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=${{ matrix.pyarrow_version }}
Original file line number Diff line number Diff line change 64
64
activate-environment : pandas-sdist
65
65
channels : conda-forge
66
66
python-version : ' ${{ matrix.python-version }}'
67
+ condarc-file : ci/condarc.yml
67
68
68
69
- name : Install pandas from sdist
69
70
run : |
Original file line number Diff line number Diff line change
1
+ # https://docs.conda.io/projects/conda/en/latest/configuration.html
2
+
3
+ # always_yes (NoneType, bool)
4
+ # aliases: yes
5
+ # Automatically choose the 'yes' option whenever asked to proceed with a
6
+ # conda operation, such as when running `conda install`.
7
+ #
8
+ always_yes : true
9
+
10
+ # remote_connect_timeout_secs (float)
11
+ # The number seconds conda will wait for your client to establish a
12
+ # connection to a remote url resource.
13
+ #
14
+ remote_connect_timeout_secs : 30.0
15
+
16
+ # remote_max_retries (int)
17
+ # The maximum number of retries each HTTP connection should attempt.
18
+ #
19
+ remote_max_retries : 10
20
+
21
+ # remote_backoff_factor (int)
22
+ # The factor determines the time HTTP connection should wait for
23
+ # attempt.
24
+ #
25
+ remote_backoff_factor : 3
26
+
27
+ # remote_read_timeout_secs (float)
28
+ # Once conda has connected to a remote resource and sent an HTTP
29
+ # request, the read timeout is the number of seconds conda will wait for
30
+ # the server to send a response.
31
+ #
32
+ remote_read_timeout_secs : 60.0
You can’t perform that action at this time.
0 commit comments