Skip to content
forked from pydata/xarray

Commit 9291b91

Browse files
committed
Merge branch 'master' of github.com:pydata/xarray into optimize-lazy-equiv
* 'master' of github.com:pydata/xarray: (28 commits) Add nanmedian for dask arrays (pydata#3604) added pyinterp to related projects (pydata#3655) Allow incomplete hypercubes in combine_by_coords (pydata#3649) concat keeps attrs from first variable. (pydata#3637) Extend DatetimeAccessor properties and support `.dt` accessor for Timedelta (pydata#3612) update readthedocs.yml (pydata#3639) silence sphinx warnings round 3 (pydata#3602) Fix/quantile wrong errmsg (pydata#3635) Provide shape info in shape mismatch error. (pydata#3619) Minor doc fixes (pydata#3615) Respect user-specified coordinates attribute. (pydata#3487) Add Facetgrid.row_labels & Facetgrid.col_labels (pydata#3597) Fix pint integration tests (pydata#3600) Minor fix to combine_by_coords to allow for the combination of CFTimeIndexes separated by large time intervals (pydata#3543) Fix map_blocks HLG layering (pydata#3598) Silence sphinx warnings: Round 2 (pydata#3592) 2x~5x speed up for isel() in most cases (pydata#3533) remove xarray again (pydata#3591) fix plotting with transposed nondim coords. (pydata#3441) make coarsen reductions consistent with reductions on other classes (pydata#3500) ...
2 parents 1972fde + b3d3b44 commit 9291b91

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3196
-1438
lines changed

.binder/environment.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: xarray-examples
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python=3.7
6+
- boto3
7+
- bottleneck
8+
- cartopy
9+
- cdms2
10+
- cfgrib
11+
- cftime
12+
- coveralls
13+
- dask
14+
- distributed
15+
- dask_labextension
16+
- h5netcdf
17+
- h5py
18+
- hdf5
19+
- iris
20+
- lxml # Optional dep of pydap
21+
- matplotlib
22+
- nc-time-axis
23+
- netcdf4
24+
- numba
25+
- numpy
26+
- pandas
27+
- pint
28+
- pip
29+
- pydap
30+
- pynio
31+
- rasterio
32+
- scipy
33+
- seaborn
34+
- sparse
35+
- toolz
36+
- xarray
37+
- zarr
38+
- pip:
39+
- numbagg

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ jobs:
110110
- bash: |
111111
source activate xarray-tests
112112
cd doc
113-
sphinx-build -n -j auto -b html -d _build/doctrees . _build/html
113+
sphinx-build -W --keep-going -j auto -b html -d _build/doctrees . _build/html
114114
displayName: Build HTML docs

ci/azure/install.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ steps:
2525
git+https://github.com/dask/dask \
2626
git+https://github.com/dask/distributed \
2727
git+https://github.com/zarr-developers/zarr \
28-
git+https://github.com/Unidata/cftime
28+
git+https://github.com/Unidata/cftime \
29+
git+https://github.com/mapbox/rasterio \
30+
git+https://github.com/pydata/bottleneck
2931
condition: eq(variables['UPSTREAM_DEV'], 'true')
3032
displayName: Install upstream dev dependencies
3133

ci/requirements/doc.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
- python=3.7
77
- bottleneck
88
- cartopy
9-
- eccodes
9+
- cfgrib
1010
- h5netcdf
1111
- ipykernel
1212
- ipython
@@ -22,7 +22,3 @@ dependencies:
2222
- sphinx
2323
- sphinx_rtd_theme
2424
- zarr
25-
- pip
26-
- pip:
27-
- cfgrib
28-

0 commit comments

Comments
 (0)