Skip to content

Commit a69e521

Browse files
committed
Don't update conda
1 parent d51dd9d commit a69e521

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ install:
5959

6060
# install our build environment
6161
- cmd: conda config --set show_channel_urls true --set always_yes true --set changeps1 false
62-
- cmd: conda update -q conda
62+
# - cmd: conda update -q conda
6363
- cmd: conda config --set ssl_verify false
6464

6565
# add the pandas channel *before* defaults to have defaults take priority

ci/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function UpdateConda ($python_home) {
8585

8686
function main () {
8787
InstallMiniconda "3.5" $env:PYTHON_ARCH $env:CONDA_ROOT
88-
UpdateConda $env:CONDA_ROOT
88+
# UpdateConda $env:CONDA_ROOT
8989
InstallCondaPackages $env:CONDA_ROOT "conda-build jinja2 anaconda-client"
9090
}
9191

ci/install_circle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export PATH="$MINICONDA_DIR/bin:$PATH"
2020
echo "[update conda]"
2121
conda config --set ssl_verify false || exit 1
2222
conda config --set always_yes true --set changeps1 false || exit 1
23-
conda update -q conda
23+
# conda update -q conda
2424

2525
# add the pandas channel to take priority
2626
# to add extra packages

ci/install_travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ echo
5252
echo "[update conda]"
5353
conda config --set ssl_verify false || exit 1
5454
conda config --set quiet true --set always_yes true --set changeps1 false || exit 1
55-
conda update -q conda
55+
# conda update -q conda
5656

5757
echo
5858
echo "[add channels]"

0 commit comments

Comments
 (0)