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:
1818 if : ${{ inputs.pyarrow-version }}
1919
2020 - name : Install ${{ inputs.environment-file }}
21- uses : conda-incubator/setup-miniconda@v2
21+ uses : conda-incubator/setup-miniconda@v2.1.1
2222 with :
2323 environment-file : ${{ inputs.environment-file }}
2424 channel-priority : ${{ runner.os == 'macOS' && 'flexible' || 'strict' }}
2525 channels : conda-forge
2626 mamba-version : " 0.23"
2727 use-mamba : true
28+ condarc-file : ci/condarc.yml
Original file line number Diff line number Diff line change 4747 channel-priority : strict
4848 environment-file : ${{ env.ENV_FILE }}
4949 use-only-tar-bz2 : true
50+ condarc-file : ci/condarc.yml
5051
5152 - name : Run benchmarks
5253 id : bench
Original file line number Diff line number Diff line change 6666 channel-priority : strict
6767 environment-file : ${{ env.ENV_FILE }}
6868 use-only-tar-bz2 : true
69+ condarc-file : ci/condarc.yml
6970
7071 - name : Build Pandas
7172 id : build
@@ -135,6 +136,7 @@ jobs:
135136 channel-priority : strict
136137 environment-file : ${{ env.ENV_FILE }}
137138 use-only-tar-bz2 : true
139+ condarc-file : ci/condarc.yml
138140
139141 - name : Build Pandas
140142 id : build
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ jobs:
155155 channel-priority : flexible
156156 environment-file : ${{ env.ENV_FILE }}
157157 use-only-tar-bz2 : true
158+ condarc-file : ci/condarc.yml
158159
159160 - name : Upgrade Arrow version
160161 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 6464 activate-environment : pandas-sdist
6565 channels : conda-forge
6666 python-version : ' ${{ matrix.python-version }}'
67+ condarc-file : ci/condarc.yml
6768
6869 - name : Install pandas from sdist
6970 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