Skip to content

Commit 6f272b5

Browse files
authored
Fix failing upstream-dev build & remove docs build (#4160)
Instead, we'll use RTD's new doc builder instead. For an example, click on "docs/readthedocs.org:xray" below or look at GH4159
1 parent bc5c79e commit 6f272b5

File tree

2 files changed

+4
-19
lines changed

2 files changed

+4
-19
lines changed

azure-pipelines.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -108,21 +108,3 @@ jobs:
108108
python ci/min_deps_check.py ci/requirements/py36-bare-minimum.yml
109109
python ci/min_deps_check.py ci/requirements/py36-min-all-deps.yml
110110
displayName: minimum versions policy
111-
112-
- job: Docs
113-
pool:
114-
vmImage: 'ubuntu-16.04'
115-
steps:
116-
- template: ci/azure/install.yml
117-
parameters:
118-
env_file: ci/requirements/doc.yml
119-
- bash: |
120-
source activate xarray-tests
121-
# Replicate the exact environment created by the readthedocs CI
122-
conda install --yes --quiet -c pkgs/main mock pillow sphinx sphinx_rtd_theme
123-
displayName: Replicate readthedocs CI environment
124-
- bash: |
125-
source activate xarray-tests
126-
cd doc
127-
sphinx-build -W --keep-going -j auto -b html -d _build/doctrees . _build/html
128-
displayName: Build HTML docs

ci/azure/install.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ steps:
1010
conda env create -n xarray-tests --file ${{ parameters.env_file }}
1111
displayName: Install conda dependencies
1212

13+
# TODO: add sparse back in, once Numba works with the development version of
14+
# NumPy again: https://github.com/pydata/xarray/issues/4146
1315
- bash: |
1416
source activate xarray-tests
1517
conda uninstall -y --force \
@@ -23,7 +25,8 @@ steps:
2325
cftime \
2426
rasterio \
2527
pint \
26-
bottleneck
28+
bottleneck \
29+
sparse
2730
python -m pip install \
2831
-i https://pypi.anaconda.org/scipy-wheels-nightly/simple \
2932
--no-deps \

0 commit comments

Comments
 (0)