Skip to content

Commit 6795fd0

Browse files
authored
Remove broken Travis-CI builds (#2661)
* Remove broken Travis-CI builds Remove the optional condaforge-rc, netcdf4-dev and pynio-dev builds. These have been continuously failing (due to broken installs), so we shouldn't waste time/energy running them. * Install latest miniconda * Make appveyor default to python 3 miniconda
1 parent 6963164 commit 6795fd0

12 files changed

+12
-101
lines changed

.travis.yml

+1-18
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,9 @@ matrix:
1717
- env:
1818
- CONDA_ENV=py36
1919
- EXTRA_FLAGS="--run-flaky --run-network-tests"
20-
- env: CONDA_ENV=py36-netcdf4-dev
21-
addons:
22-
apt_packages:
23-
- libhdf5-serial-dev
24-
- netcdf-bin
25-
- libnetcdf-dev
2620
- env: CONDA_ENV=py36-dask-dev
2721
- env: CONDA_ENV=py36-pandas-dev
2822
- env: CONDA_ENV=py36-bottleneck-dev
29-
- env: CONDA_ENV=py36-condaforge-rc
30-
- env: CONDA_ENV=py36-pynio-dev
3123
- env: CONDA_ENV=py36-rasterio
3224
- env: CONDA_ENV=py36-zarr-dev
3325
- env: CONDA_ENV=docs
@@ -38,25 +30,16 @@ matrix:
3830
- env:
3931
- CONDA_ENV=py36
4032
- EXTRA_FLAGS="--run-flaky --run-network-tests"
41-
- env: CONDA_ENV=py36-netcdf4-dev
42-
addons:
43-
apt_packages:
44-
- libhdf5-serial-dev
45-
- netcdf-bin
46-
- libnetcdf-dev
4733
- env: CONDA_ENV=py36-pandas-dev
4834
- env: CONDA_ENV=py36-bottleneck-dev
49-
- env: CONDA_ENV=py36-condaforge-rc
50-
- env: CONDA_ENV=py36-pynio-dev
5135
- env: CONDA_ENV=py36-zarr-dev
5236

5337
before_install:
54-
- wget http://repo.continuum.io/miniconda/Miniconda3-3.16.0-Linux-x86_64.sh -O miniconda.sh;
38+
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
5539
- bash miniconda.sh -b -p $HOME/miniconda
5640
- export PATH="$HOME/miniconda/bin:$PATH"
5741
- hash -r
5842
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
59-
- conda update -q conda
6043
- conda info -a
6144

6245
install:

ci/install_python.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# Authors: Olivier Grisel, Jonathan Helmus and Kyle Kastner
33
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
44

5-
$MINICONDA_URL = "http://repo.continuum.io/miniconda/"
5+
$MINICONDA_URL = "https://repo.anaconda.com/miniconda/"
66
$BASE_URL = "https://www.python.org/ftp/python/"
77

88

99
function DownloadMiniconda ($python_version, $platform_suffix) {
1010
$webclient = New-Object System.Net.WebClient
11-
if ($python_version -match "3.6") {
12-
$filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
13-
} else {
11+
if ($python_version -match "2.7") {
1412
$filename = "Miniconda2-latest-Windows-" + $platform_suffix + ".exe"
13+
} else {
14+
$filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
1515
}
1616
$url = $MINICONDA_URL + $filename
1717

ci/requirements-py35.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dependencies:
1010
- matplotlib=1.5
1111
- netcdf4
1212
- pytest
13-
- pytest-env
1413
- pytest-cov
14+
- pytest-env
1515
- coveralls
1616
- flake8
1717
- numpy

ci/requirements-py36-bottleneck-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies:
1111
- matplotlib
1212
- netcdf4
1313
- pytest
14-
- pytest-env
1514
- pytest-cov
15+
- pytest-env
1616
- coveralls
1717
- flake8
1818
- numpy

ci/requirements-py36-condaforge-rc.yml

-23
This file was deleted.

ci/requirements-py36-dask-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ dependencies:
99
- matplotlib
1010
- netcdf4
1111
- pytest
12-
- pytest-env
1312
- pytest-cov
13+
- pytest-env
1414
- coveralls
1515
- flake8
1616
- numpy

ci/requirements-py36-hypothesis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dependencies:
1010
- matplotlib
1111
- netcdf4
1212
- pytest
13-
- pytest-env
1413
- pytest-cov
14+
- pytest-env
1515
- coveralls
1616
- hypothesis
1717
- flake8

ci/requirements-py36-netcdf4-dev.yml

-23
This file was deleted.

ci/requirements-py36-pandas-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dependencies:
1212
- matplotlib
1313
- netcdf4
1414
- pytest
15-
- pytest-env
1615
- pytest-cov
16+
- pytest-env
1717
- coveralls
1818
- flake8
1919
- numpy

ci/requirements-py36-pynio-dev.yml

-26
This file was deleted.

ci/requirements-py36-rasterio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies:
1111
- matplotlib
1212
- netcdf4
1313
- pytest
14-
- pytest-env
1514
- pytest-cov
15+
- pytest-env
1616
- coveralls
1717
- numpy
1818
- pandas

ci/requirements-py36-zarr-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ dependencies:
88
- distributed
99
- matplotlib
1010
- pytest
11-
- pytest-env
1211
- pytest-cov
12+
- pytest-env
1313
- coveralls
1414
- flake8
1515
- numpy

0 commit comments

Comments
 (0)