You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally, we would simply fail the build when Sphinx encounters a warning (e.g., by adding the -W flag). I attempted to do this in #1984. However, there are two issues with this:
We currently issue a very long list of warnings as part of a sphinx-build (see below), most of these due to failed references or a formatting issue with docstrings for numpydoc. Fixing this will be non-trivial.
IPython's sphinx directive currently does not even issue warnings/errors, due a bug in recent versions of IPython. This has been fixed on master, but not in a released version yet. We should be able to fix this when pandas removes their versioned version of the IPython directive (DOC: removed vendored IPython.sphinxext - take 2 pandas-dev/pandas#19657).
Expand for warnings from sphinx:
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray:1: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray:1: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.all:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.any:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.argmax:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.argmin:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.assign_attrs:4: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.assign_attrs:4: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.count:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.cumprod:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.cumsum:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.groupby_bins:66: WARNING: duplicate citation R3, other instance in /Users/shoyer/dev/xarray/doc/generated/xarray.apply_ufunc.rst
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.interpolate_na:15: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.max:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.mean:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.median:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.min:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.pipe:2: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.pipe:2: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.prod:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.quantile:44: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.resample:54: WARNING: duplicate citation R4, other instance in /Users/shoyer/dev/xarray/doc/generated/xarray.ufuncs.arcsinh.rst
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.std:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.sum:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.to_netcdf:22: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.to_netcdf:58: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.to_netcdf:55: WARNING: Inline literal start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.DataArray.var:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.assign_attrs:4: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.assign_attrs:4: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.cumprod:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.cumsum:10: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.groupby_bins:66: WARNING: duplicate citation R7, other instance in /Users/shoyer/dev/xarray/doc/generated/xarray.ufuncs.arctanh.rst
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.interpolate_na:15: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.merge:28: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.pipe:2: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.pipe:2: WARNING: Inline strong start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/common.py:docstring of xarray.Dataset.resample:54: WARNING: duplicate citation R8, other instance in /Users/shoyer/dev/xarray/doc/generated/xarray.ufuncs.exp.rst
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.to_netcdf:59: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.to_netcdf:56: WARNING: Inline literal start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/alignment.py:docstring of xarray.align:25: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/alignment.py:docstring of xarray.align:45: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/core/computation.py:docstring of xarray.apply_ufunc:147: WARNING: duplicate citation R9, other instance in /Users/shoyer/dev/xarray/doc/generated/xarray.ufuncs.exp.rst
/Users/shoyer/dev/xarray/xarray/core/combine.py:docstring of xarray.auto_combine:36: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/combine.py:docstring of xarray.concat:35: WARNING: Definition list ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.apply:11: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.apply:13: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.apply:26: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.apply:28: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.apply:30: WARNING: Enumerated list ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.apply:11: WARNING: Unexpected indentation.
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.apply:13: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/core/merge.py:docstring of xarray.merge:15: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_mfdataset:11: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_mfdataset:38: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.angle:13: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arccos:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arccosh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arcsin:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arcsinh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arctan:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arctan2:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arctanh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.ceil:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.conj:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.copysign:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.cos:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.cosh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.deg2rad:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.degrees:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.exp:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.expm1:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fabs:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fix:16: WARNING: Block quote ends without a blank line; unexpected unindent.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.floor:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmod:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.frexp:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.hypot:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isfinite:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isinf:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.ldexp:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log10:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log1p:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log2:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logaddexp:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logaddexp2:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_and:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_not:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_or:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_xor:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.nextafter:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.rad2deg:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.radians:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.rint:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sign:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.signbit:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sin:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sinh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sqrt:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.square:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.tan:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.tanh:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.trunc:6: WARNING: Inline emphasis start-string without end-string.
/Users/shoyer/dev/xarray/doc/README.rst: WARNING: document isn't included in any toctree
/Users/shoyer/dev/xarray/doc/api-hidden.rst: WARNING: document isn't included in any toctree
done
checking consistency... done
preparing documents... done
/Users/shoyer/dev/xarray/doc/api.rst:165: WARNING: py:attr reference target not found: Dataset.astype
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray:1: WARNING: py:obj reference target not found: xarray.DataArray.isel_points
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray:1: WARNING: py:obj reference target not found: xarray.DataArray.sel_points
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray:1: WARNING: py:obj reference target not found: xarray.DataArray.dt
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.chunk:29: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.compute:26: WARNING: py:obj reference target not found: dask.array.compute
/Users/shoyer/dev/xarray/xarray/core/ops.py:docstring of xarray.DataArray.conj:16: WARNING: py:obj reference target not found: numpy.conjugate
/Users/shoyer/dev/xarray/xarray/core/ops.py:docstring of xarray.DataArray.conjugate:16: WARNING: py:obj reference target not found: numpy.conjugate
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.identical:16: WARNING: py:obj reference target not found: DataArray.equal
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.interpolate_na:53: WARNING: py:obj reference target not found: scipy.interpolate
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.load:25: WARNING: py:obj reference target not found: dask.array.compute
/Users/shoyer/dev/xarray/xarray/core/dataarray.py:docstring of xarray.DataArray.persist:23: WARNING: py:obj reference target not found: dask.persist
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.astype
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.dump_to_store
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.get
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.isel_points
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.keys
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.load_store
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset:1: WARNING: py:obj reference target not found: xarray.Dataset.sel_points
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.chunk:29: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.compute:26: WARNING: py:obj reference target not found: dask.array.compute
/Users/shoyer/dev/xarray/xarray/core/ops.py:docstring of xarray.Dataset.conj:16: WARNING: py:obj reference target not found: numpy.conjugate
/Users/shoyer/dev/xarray/xarray/core/ops.py:docstring of xarray.Dataset.conjugate:16: WARNING: py:obj reference target not found: numpy.conjugate
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.info:20: WARNING: py:obj reference target not found: netCDF
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.interpolate_na:53: WARNING: py:obj reference target not found: scipy.interpolate
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.load:25: WARNING: py:obj reference target not found: dask.array.compute
/Users/shoyer/dev/xarray/xarray/core/dataset.py:docstring of xarray.Dataset.persist:25: WARNING: py:obj reference target not found: dask.persist
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.all
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.any
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.argmax
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.argmin
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.argsort
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.astype
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.broadcast_equals
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.chunk
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.clip
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.compute
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.concat
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.conj
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.conjugate
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.copy
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.count
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.cumprod
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.cumsum
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.equals
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.expand_dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.fillna
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.get_axis_num
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.get_level_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.identical
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.isel
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.isnull
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.item
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.load
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.max
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.mean
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.median
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.min
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.no_conflicts
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.notnull
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.pad_with_fill_value
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.prod
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.quantile
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.rank
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.reduce
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.roll
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.rolling_window
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.round
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.searchsorted
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.set_dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.shift
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.squeeze
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.stack
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.std
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.sum
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.to_base_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.to_coord
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.to_index
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.to_index_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.to_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.transpose
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.unstack
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.var
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.where
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.T
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.attrs
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.chunks
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.data
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.dtype
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.encoding
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.imag
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.level_names
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.name
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.nbytes
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.ndim
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.real
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.shape
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.size
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.sizes
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.IndexVariable:1: WARNING: py:obj reference target not found: xarray.IndexVariable.values
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.all
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.any
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.argmax
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.argmin
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.argsort
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.astype
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.broadcast_equals
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.chunk
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.clip
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.compute
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.concat
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.conj
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.conjugate
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.copy
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.count
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.cumprod
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.cumsum
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.equals
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.expand_dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.fillna
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.get_axis_num
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.identical
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.isel
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.isnull
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.item
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.load
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.max
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.mean
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.median
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.min
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.no_conflicts
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.notnull
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.pad_with_fill_value
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.prod
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.quantile
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.rank
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.reduce
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.roll
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.rolling_window
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.round
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.searchsorted
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.set_dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.shift
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.squeeze
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.stack
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.std
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.sum
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.to_base_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.to_coord
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.to_index
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.to_index_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.to_variable
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.transpose
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.unstack
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.var
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.where
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.T
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.attrs
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.chunks
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.data
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.dims
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.dtype
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.encoding
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.imag
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.nbytes
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.ndim
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.real
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.shape
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.size
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.sizes
/Users/shoyer/dev/xarray/xarray/core/variable.py:docstring of xarray.Variable:1: WARNING: py:obj reference target not found: xarray.Variable.values
/Users/shoyer/dev/xarray/xarray/core/computation.py:docstring of xarray.apply_ufunc:59: WARNING: py:func reference target not found: numpy.vectorize
/Users/shoyer/dev/xarray/xarray/core/computation.py:docstring of xarray.apply_ufunc:197: WARNING: py:func reference target not found: numpy.vectorize
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.assert_open
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.close
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.encode
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.encode_attribute
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.encode_variable
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.ensure_open
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.get
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.get_attrs
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.get_dimensions
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.get_encoding
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.get_variables
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.items
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.keys
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.load
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.open_store_variable
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.prepare_variable
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_attribute
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_attributes
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_dimension
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_dimensions
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_variable
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.set_variables
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.store
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.store_dataset
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.sync
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.values
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.attrs
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.dimensions
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.ds
/Users/shoyer/dev/xarray/xarray/backends/h5netcdf_.py:docstring of xarray.backends.H5NetCDFStore:1: WARNING: py:obj reference target not found: xarray.backends.H5NetCDFStore.variables
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.assert_open
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.close
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.encode
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.encode_attribute
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.encode_variable
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.ensure_open
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.get
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.get_attrs
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.get_dimensions
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.get_encoding
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.get_variables
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.items
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.keys
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.load
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.open
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.open_store_variable
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.prepare_variable
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_attribute
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_attributes
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_dimension
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_dimensions
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_variable
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.set_variables
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.store
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.store_dataset
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.sync
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.values
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.attrs
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.dimensions
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.ds
/Users/shoyer/dev/xarray/xarray/backends/netCDF4_.py:docstring of xarray.backends.NetCDF4DataStore:1: WARNING: py:obj reference target not found: xarray.backends.NetCDF4DataStore.variables
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.close
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.get
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.get_attrs
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.get_dimensions
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.get_encoding
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.get_variables
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.items
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.keys
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.load
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.open
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.open_store_variable
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.values
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.attrs
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.dimensions
/Users/shoyer/dev/xarray/xarray/backends/pydap_.py:docstring of xarray.backends.PydapDataStore:1: WARNING: py:obj reference target not found: xarray.backends.PydapDataStore.variables
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.assert_open
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.close
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.encode
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.encode_attribute
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.encode_variable
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.ensure_open
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.get
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.get_attrs
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.get_dimensions
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.get_encoding
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.get_variables
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.items
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.keys
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.load
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.open_store_variable
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.prepare_variable
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_attribute
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_attributes
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_dimension
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_dimensions
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_variable
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.set_variables
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.store
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.store_dataset
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.sync
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.values
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.attrs
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.dimensions
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.ds
/Users/shoyer/dev/xarray/xarray/backends/scipy_.py:docstring of xarray.backends.ScipyDataStore:1: WARNING: py:obj reference target not found: xarray.backends.ScipyDataStore.variables
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.all
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.any
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.argmax
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.argmin
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.count
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.max
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.mean
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.median
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.min
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.prod
generating indices.../Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.std
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.sum
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.var
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.groups
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.assign_coords:15: WARNING: py:obj reference target not found: Dataset.assign_coords
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.fillna:29: WARNING: py:obj reference target not found: Dataset.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.fillna:29: WARNING: py:obj reference target not found: DataArray.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.where:30: WARNING: py:obj reference target not found: Dataset.where
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.all
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.any
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.argmax
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.argmin
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.count
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.max
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.mean
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.median
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.min
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.prod
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.std
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.sum
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.var
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.groups
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.assign:15: WARNING: py:obj reference target not found: Dataset.assign
genindex/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.assign_coords:15: WARNING: py:obj reference target not found: Dataset.assign_coords
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.fillna:29: WARNING: py:obj reference target not found: Dataset.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.fillna:29: WARNING: py:obj reference target not found: DataArray.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.where:30: WARNING: py:obj reference target not found: Dataset.where
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: DataArray.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: DataArray.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: Dataset.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: Dataset.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.argmax
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.argmin
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.count
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.max
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.mean
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.median
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.min
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.prod
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.std
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.sum
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.var
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: Dataset.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: DataArray.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: Dataset.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: DataArray.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.argmax
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.argmin
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.count
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.max
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.mean
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.median
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.min
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.prod
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.std
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.sum
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.var
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_dataarray:73: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_dataset:72: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_mfdataset:68: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/rasterio_.py:docstring of xarray.open_rasterio:48: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.add_colorbar
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_axis_labels
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_xlabels
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_ylabels
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_equal:29: WARNING: py:obj reference target not found: Dataset.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_equal:29: WARNING: py:obj reference target not found: DataArray.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_identical:26: WARNING: py:obj reference target not found: Dataset.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_identical:26: WARNING: py:obj reference target not found: DataArray.equals
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arccos:53: WARNING: py:obj reference target not found: emath.arccos
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arcsin:49: WARNING: py:obj reference target not found: emath.arcsin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arctanh:47: WARNING: py:obj reference target not found: emath.arctanh
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.deg2rad:50: WARNING: py:obj reference target not found: unwrap
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.exp:50: WARNING: py:obj reference target not found: exp2
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fabs:52: WARNING: py:obj reference target not found: absolute
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fix:33: WARNING: py:obj reference target not found: around
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:63: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:66: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:68: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:68: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:63: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:66: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:68: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:68: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmod:57: WARNING: py:obj reference target not found: remainder
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmod:59: WARNING: py:obj reference target not found: divide
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.iscomplex:31: WARNING: py:obj reference target not found: iscomplexobj
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isfinite:57: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isfinite:57: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isinf:61: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isinf:61: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isnat
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isreal:31: WARNING: py:obj reference target not found: isrealobj
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log:51: WARNING: py:obj reference target not found: emath.log
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log10:48: WARNING: py:obj reference target not found: emath.log10
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log2:47: WARNING: py:obj reference target not found: emath.log2
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_and:48: WARNING: py:obj reference target not found: bitwise_and
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_or:49: WARNING: py:obj reference target not found: bitwise_or
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_xor:50: WARNING: py:obj reference target not found: bitwise_xor
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:63: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:66: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:68: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:68: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:63: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:66: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:68: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:68: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.rad2deg:50: WARNING: py:obj reference target not found: unwrap
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sqrt:52: WARNING: py:obj reference target not found: lib.scimath.sqrt
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.square:48: WARNING: py:obj reference target not found: power
/Users/shoyer/dev/xarray/doc/whats-new.rst:51: WARNING: py:func reference target not found: np.einsum
/Users/shoyer/dev/xarray/doc/whats-new.rst:80: WARNING: py:func reference target not found: xarray.DataArrayRolling
/Users/shoyer/dev/xarray/doc/whats-new.rst:80: WARNING: py:func reference target not found: xarray.DataArrayRolling.construct
/Users/shoyer/dev/xarray/doc/whats-new.rst:153: WARNING: py:func reference target not found: plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:236: WARNING: py:meth reference target not found: DataArray.dask_scheduler
/Users/shoyer/dev/xarray/doc/whats-new.rst:238: WARNING: py:meth reference target not found: DataArray.plot.imshow
/Users/shoyer/dev/xarray/doc/whats-new.rst:415: WARNING: py:func reference target not found: xarray.show_versions
/Users/shoyer/dev/xarray/doc/whats-new.rst:428: WARNING: py:func reference target not found: xarray.conventions.decode_cf_datetime
/Users/shoyer/dev/xarray/doc/whats-new.rst:446: WARNING: py:func reference target not found: xarray.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:487: WARNING: py:meth reference target not found: xarray.backends.PydapDataStore.open
/Users/shoyer/dev/xarray/doc/whats-new.rst:856: WARNING: py:meth reference target not found: DataArray.rolling(...).count
/Users/shoyer/dev/xarray/doc/whats-new.rst:994: WARNING: py:meth reference target not found: xarray.Variable.to_base_variable
/Users/shoyer/dev/xarray/doc/whats-new.rst:994: WARNING: py:meth reference target not found: xarray.Variable.to_index_variable
/Users/shoyer/dev/xarray/doc/whats-new.rst:1047: WARNING: py:meth reference target not found: Variable.compute
/Users/shoyer/dev/xarray/doc/whats-new.rst:1073: WARNING: py:class reference target not found: FacetGrid
/Users/shoyer/dev/xarray/doc/whats-new.rst:1089: WARNING: py:attr reference target not found: xray.Dataset.encoding
/Users/shoyer/dev/xarray/doc/whats-new.rst:1089: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:1170: WARNING: py:meth reference target not found: xarray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1170: WARNING: py:meth reference target not found: xarray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1282: WARNING: py:meth reference target not found: resample
/Users/shoyer/dev/xarray/doc/whats-new.rst:1287: WARNING: py:meth reference target not found: sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:1287: WARNING: py:meth reference target not found: loc
/Users/shoyer/dev/xarray/doc/whats-new.rst:1307: WARNING: py:meth reference target not found: filter_by_attrs
/Users/shoyer/dev/xarray/doc/whats-new.rst:1434: WARNING: py:class reference target not found: pd.Series
/Users/shoyer/dev/xarray/doc/whats-new.rst:1453: WARNING: py:meth reference target not found: xarray.Dataset.from_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1504: WARNING: py:class reference target not found: xray.DataArray
/Users/shoyer/dev/xarray/doc/whats-new.rst:1541: WARNING: py:meth reference target not found: xray.DataArray.to_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1611: WARNING: py:meth reference target not found: xray.Dataset.shift
/Users/shoyer/dev/xarray/doc/whats-new.rst:1611: WARNING: py:meth reference target not found: xray.Dataset.roll
/Users/shoyer/dev/xarray/doc/whats-new.rst:1626: WARNING: py:func reference target not found: xray.broadcast
/Users/shoyer/dev/xarray/doc/whats-new.rst:1683: WARNING: py:meth reference target not found: xray.DataArray.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1692: WARNING: py:class reference target not found: xray.plot.FacetGrid
/Users/shoyer/dev/xarray/doc/whats-new.rst:1692: WARNING: py:meth reference target not found: xray.plot.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1695: WARNING: py:meth reference target not found: xray.Dataset.sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:1695: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:1712: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:1715: WARNING: py:attr reference target not found: xray.Dataset.real
/Users/shoyer/dev/xarray/doc/whats-new.rst:1715: WARNING: py:attr reference target not found: xray.Dataset.imag
/Users/shoyer/dev/xarray/doc/whats-new.rst:1717: WARNING: py:meth reference target not found: xray.Dataset.from_dataframe
/Users/shoyer/dev/xarray/doc/whats-new.rst:1732: WARNING: py:meth reference target not found: xray.DataArray.name
/Users/shoyer/dev/xarray/doc/whats-new.rst:1734: WARNING: py:meth reference target not found: xray.DataArray.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1768: WARNING: py:meth reference target not found: xray.DataArray.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1773: WARNING: undefined label: copies vs views (if the link has no caption the label must precede a section header)
/Users/shoyer/dev/xarray/doc/whats-new.rst:1778: WARNING: py:meth reference target not found: xray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1778: WARNING: py:meth reference target not found: xray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1823: WARNING: py:meth reference target not found: xray.Dataset.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1834: WARNING: py:meth reference target not found: xray.DataArray.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1834: WARNING: py:meth reference target not found: xray.Dataset.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1838: WARNING: py:meth reference target not found: xray.DataArray.to_masked_array
/Users/shoyer/dev/xarray/doc/whats-new.rst:1847: WARNING: py:meth reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1876: WARNING: py:func reference target not found: xray.concat
/Users/shoyer/dev/xarray/doc/whats-new.rst:1886: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1890: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1890: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1895: WARNING: py:func reference target not found: xray.save_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1914: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1914: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1931: WARNING: py:meth reference target not found: xray.Dataset.pipe
/Users/shoyer/dev/xarray/doc/whats-new.rst:1933: WARNING: py:meth reference target not found: xray.Dataset.assign
/Users/shoyer/dev/xarray/doc/whats-new.rst:1933: WARNING: py:meth reference target not found: xray.Dataset.assign_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:1953: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1969: WARNING: py:func reference target not found: xray.concat
/Users/shoyer/dev/xarray/doc/whats-new.rst:2005: WARNING: py:meth reference target not found: xray.Dataset.to_array
/Users/shoyer/dev/xarray/doc/whats-new.rst:2005: WARNING: py:meth reference target not found: xray.DataArray.to_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2016: WARNING: py:meth reference target not found: xray.Dataset.fillna
/Users/shoyer/dev/xarray/doc/whats-new.rst:2028: WARNING: py:meth reference target not found: xray.Dataset.assign
/Users/shoyer/dev/xarray/doc/whats-new.rst:2028: WARNING: py:meth reference target not found: xray.Dataset.assign_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:2040: WARNING: py:meth reference target not found: xray.Dataset.sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:2040: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:2078: WARNING: py:class reference target not found: xray.set_options
/Users/shoyer/dev/xarray/doc/whats-new.rst:2103: WARNING: py:meth reference target not found: xray.Dataset.load
/Users/shoyer/dev/xarray/doc/whats-new.rst:2117: WARNING: py:meth reference target not found: xray.Dataset.resample
/Users/shoyer/dev/xarray/doc/whats-new.rst:2155: WARNING: py:meth reference target not found: xray.Dataset.swap_dims
/Users/shoyer/dev/xarray/doc/whats-new.rst:2165: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2165: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2198: WARNING: py:func reference target not found: xray.align
/Users/shoyer/dev/xarray/doc/whats-new.rst:2198: WARNING: py:meth reference target not found: xray.Dataset.reindex_like
/Users/shoyer/dev/xarray/doc/whats-new.rst:2251: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2290: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:2303: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2305: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2308: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2308: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2311: WARNING: py:meth reference target not found: xray.Dataset.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2311: WARNING: py:meth reference target not found: xray.DataArray.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2325: WARNING: py:meth reference target not found: xray.Dataset.broadcast_equals
/Users/shoyer/dev/xarray/doc/whats-new.rst:2350: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2352: WARNING: py:meth reference target not found: xray.Dataset.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2482: WARNING: py:meth reference target not found: xray.Dataset.count
/Users/shoyer/dev/xarray/doc/whats-new.rst:2482: WARNING: py:meth reference target not found: xray.Dataset.dropna
/Users/shoyer/dev/xarray/doc/whats-new.rst:2485: WARNING: py:meth reference target not found: xray.DataArray.to_pandas
/Users/shoyer/dev/xarray/doc/whats-new.rst:2518: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2532: WARNING: py:meth reference target not found: xray.Dataset.equals
/Users/shoyer/dev/xarray/doc/whats-new.rst:2542: WARNING: py:meth reference target not found: xray.DataArray.reset_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:2551: WARNING: unknown document: tutorial
/Users/shoyer/dev/xarray/doc/whats-new.rst:2554: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2562: WARNING: py:meth reference target not found: xray.Dataset.load_data
/Users/shoyer/dev/xarray/doc/whats-new.rst:2562: WARNING: py:meth reference target not found: xray.Dataset.close
The text was updated successfully, but these errors were encountered:
this should have been fixed, at least partially, by #3516, #3592 and #3602. I didn't check errors in the IPython sphinx extension, though. Also, we don't use Travis anymore.
We don't want to release docs in a broken state.
Ideally, we would simply fail the build when Sphinx encounters a warning (e.g., by adding the
-W
flag). I attempted to do this in #1984. However, there are two issues with this:Expand for warnings from sphinx:
generating indices.../Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.std
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.sum
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.var
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DataArrayGroupBy.groups
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.assign_coords:15: WARNING: py:obj reference target not found: Dataset.assign_coords
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.fillna:29: WARNING: py:obj reference target not found: Dataset.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.fillna:29: WARNING: py:obj reference target not found: DataArray.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DataArrayGroupBy.where:30: WARNING: py:obj reference target not found: Dataset.where
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.all
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.any
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.argmax
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.argmin
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.count
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.max
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.mean
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.median
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.min
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.prod
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.std
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.sum
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.var
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy:1: WARNING: py:obj reference target not found: xarray.core.groupby.DatasetGroupBy.groups
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.assign:15: WARNING: py:obj reference target not found: Dataset.assign
genindex/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.assign_coords:15: WARNING: py:obj reference target not found: Dataset.assign_coords
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.fillna:29: WARNING: py:obj reference target not found: Dataset.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.fillna:29: WARNING: py:obj reference target not found: DataArray.fillna
/Users/shoyer/dev/xarray/xarray/core/groupby.py:docstring of xarray.core.groupby.DatasetGroupBy.where:30: WARNING: py:obj reference target not found: Dataset.where
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: DataArray.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: DataArray.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: Dataset.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling.init:45: WARNING: py:obj reference target not found: Dataset.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.argmax
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.argmin
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.count
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.max
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.mean
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.median
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.min
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.prod
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.std
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.sum
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DataArrayRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DataArrayRolling.var
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: Dataset.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: DataArray.rolling
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: Dataset.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling.init:45: WARNING: py:obj reference target not found: DataArray.groupby
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.argmax
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.argmin
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.count
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.max
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.mean
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.median
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.min
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.prod
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.std
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.sum
/Users/shoyer/dev/xarray/xarray/core/rolling.py:docstring of xarray.core.rolling.DatasetRolling:1: WARNING: py:obj reference target not found: xarray.core.rolling.DatasetRolling.var
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_dataarray:73: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_dataset:72: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/api.py:docstring of xarray.open_mfdataset:68: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/backends/rasterio_.py:docstring of xarray.open_rasterio:48: WARNING: py:func reference target not found: dask.array.from_array
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.add_colorbar
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_axis_labels
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_xlabels
/Users/shoyer/dev/xarray/xarray/plot/facetgrid.py:docstring of xarray.plot.FacetGrid:1: WARNING: py:obj reference target not found: xarray.plot.FacetGrid.set_ylabels
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_equal:29: WARNING: py:obj reference target not found: Dataset.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_equal:29: WARNING: py:obj reference target not found: DataArray.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_identical:26: WARNING: py:obj reference target not found: Dataset.equals
/Users/shoyer/dev/xarray/xarray/testing.py:docstring of xarray.testing.assert_identical:26: WARNING: py:obj reference target not found: DataArray.equals
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arccos:53: WARNING: py:obj reference target not found: emath.arccos
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arcsin:49: WARNING: py:obj reference target not found: emath.arcsin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.arctanh:47: WARNING: py:obj reference target not found: emath.arctanh
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.deg2rad:50: WARNING: py:obj reference target not found: unwrap
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.exp:50: WARNING: py:obj reference target not found: exp2
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fabs:52: WARNING: py:obj reference target not found: absolute
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fix:33: WARNING: py:obj reference target not found: around
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:63: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:66: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:68: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmax:68: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:63: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:66: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:68: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmin:68: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmod:57: WARNING: py:obj reference target not found: remainder
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.fmod:59: WARNING: py:obj reference target not found: divide
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.iscomplex:31: WARNING: py:obj reference target not found: iscomplexobj
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isfinite:57: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isfinite:57: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isinf:61: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isinf:61: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isneginf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isposinf
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isnan:53: WARNING: py:obj reference target not found: isnat
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.isreal:31: WARNING: py:obj reference target not found: isrealobj
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log:51: WARNING: py:obj reference target not found: emath.log
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log10:48: WARNING: py:obj reference target not found: emath.log10
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.log2:47: WARNING: py:obj reference target not found: emath.log2
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_and:48: WARNING: py:obj reference target not found: bitwise_and
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_or:49: WARNING: py:obj reference target not found: bitwise_or
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.logical_xor:50: WARNING: py:obj reference target not found: bitwise_xor
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:63: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:66: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:68: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.maximum:68: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:63: WARNING: py:obj reference target not found: amin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:66: WARNING: py:obj reference target not found: nanmin
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:68: WARNING: py:obj reference target not found: amax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.minimum:68: WARNING: py:obj reference target not found: nanmax
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.rad2deg:50: WARNING: py:obj reference target not found: unwrap
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.sqrt:52: WARNING: py:obj reference target not found: lib.scimath.sqrt
/Users/shoyer/dev/xarray/xarray/ufuncs.py:docstring of xarray.ufuncs.square:48: WARNING: py:obj reference target not found: power
/Users/shoyer/dev/xarray/doc/whats-new.rst:51: WARNING: py:func reference target not found: np.einsum
/Users/shoyer/dev/xarray/doc/whats-new.rst:80: WARNING: py:func reference target not found: xarray.DataArrayRolling
/Users/shoyer/dev/xarray/doc/whats-new.rst:80: WARNING: py:func reference target not found: xarray.DataArrayRolling.construct
/Users/shoyer/dev/xarray/doc/whats-new.rst:153: WARNING: py:func reference target not found: plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:236: WARNING: py:meth reference target not found: DataArray.dask_scheduler
/Users/shoyer/dev/xarray/doc/whats-new.rst:238: WARNING: py:meth reference target not found: DataArray.plot.imshow
/Users/shoyer/dev/xarray/doc/whats-new.rst:415: WARNING: py:func reference target not found: xarray.show_versions
/Users/shoyer/dev/xarray/doc/whats-new.rst:428: WARNING: py:func reference target not found: xarray.conventions.decode_cf_datetime
/Users/shoyer/dev/xarray/doc/whats-new.rst:446: WARNING: py:func reference target not found: xarray.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:487: WARNING: py:meth reference target not found: xarray.backends.PydapDataStore.open
/Users/shoyer/dev/xarray/doc/whats-new.rst:856: WARNING: py:meth reference target not found: DataArray.rolling(...).count
/Users/shoyer/dev/xarray/doc/whats-new.rst:994: WARNING: py:meth reference target not found: xarray.Variable.to_base_variable
/Users/shoyer/dev/xarray/doc/whats-new.rst:994: WARNING: py:meth reference target not found: xarray.Variable.to_index_variable
/Users/shoyer/dev/xarray/doc/whats-new.rst:1047: WARNING: py:meth reference target not found: Variable.compute
/Users/shoyer/dev/xarray/doc/whats-new.rst:1073: WARNING: py:class reference target not found: FacetGrid
/Users/shoyer/dev/xarray/doc/whats-new.rst:1089: WARNING: py:attr reference target not found: xray.Dataset.encoding
/Users/shoyer/dev/xarray/doc/whats-new.rst:1089: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:1170: WARNING: py:meth reference target not found: xarray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1170: WARNING: py:meth reference target not found: xarray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1282: WARNING: py:meth reference target not found: resample
/Users/shoyer/dev/xarray/doc/whats-new.rst:1287: WARNING: py:meth reference target not found: sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:1287: WARNING: py:meth reference target not found: loc
/Users/shoyer/dev/xarray/doc/whats-new.rst:1307: WARNING: py:meth reference target not found: filter_by_attrs
/Users/shoyer/dev/xarray/doc/whats-new.rst:1434: WARNING: py:class reference target not found: pd.Series
/Users/shoyer/dev/xarray/doc/whats-new.rst:1453: WARNING: py:meth reference target not found: xarray.Dataset.from_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1504: WARNING: py:class reference target not found: xray.DataArray
/Users/shoyer/dev/xarray/doc/whats-new.rst:1541: WARNING: py:meth reference target not found: xray.DataArray.to_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1611: WARNING: py:meth reference target not found: xray.Dataset.shift
/Users/shoyer/dev/xarray/doc/whats-new.rst:1611: WARNING: py:meth reference target not found: xray.Dataset.roll
/Users/shoyer/dev/xarray/doc/whats-new.rst:1626: WARNING: py:func reference target not found: xray.broadcast
/Users/shoyer/dev/xarray/doc/whats-new.rst:1683: WARNING: py:meth reference target not found: xray.DataArray.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1692: WARNING: py:class reference target not found: xray.plot.FacetGrid
/Users/shoyer/dev/xarray/doc/whats-new.rst:1692: WARNING: py:meth reference target not found: xray.plot.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1695: WARNING: py:meth reference target not found: xray.Dataset.sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:1695: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:1712: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:1715: WARNING: py:attr reference target not found: xray.Dataset.real
/Users/shoyer/dev/xarray/doc/whats-new.rst:1715: WARNING: py:attr reference target not found: xray.Dataset.imag
/Users/shoyer/dev/xarray/doc/whats-new.rst:1717: WARNING: py:meth reference target not found: xray.Dataset.from_dataframe
/Users/shoyer/dev/xarray/doc/whats-new.rst:1732: WARNING: py:meth reference target not found: xray.DataArray.name
/Users/shoyer/dev/xarray/doc/whats-new.rst:1734: WARNING: py:meth reference target not found: xray.DataArray.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1759: WARNING: py:meth reference target not found: xray.Dataset.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1768: WARNING: py:meth reference target not found: xray.DataArray.plot
/Users/shoyer/dev/xarray/doc/whats-new.rst:1773: WARNING: undefined label: copies vs views (if the link has no caption the label must precede a section header)
/Users/shoyer/dev/xarray/doc/whats-new.rst:1778: WARNING: py:meth reference target not found: xray.Dataset.isel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1778: WARNING: py:meth reference target not found: xray.Dataset.sel_points
/Users/shoyer/dev/xarray/doc/whats-new.rst:1823: WARNING: py:meth reference target not found: xray.Dataset.where
/Users/shoyer/dev/xarray/doc/whats-new.rst:1834: WARNING: py:meth reference target not found: xray.DataArray.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1834: WARNING: py:meth reference target not found: xray.Dataset.diff
/Users/shoyer/dev/xarray/doc/whats-new.rst:1838: WARNING: py:meth reference target not found: xray.DataArray.to_masked_array
/Users/shoyer/dev/xarray/doc/whats-new.rst:1847: WARNING: py:meth reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1876: WARNING: py:func reference target not found: xray.concat
/Users/shoyer/dev/xarray/doc/whats-new.rst:1886: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1890: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1890: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1895: WARNING: py:func reference target not found: xray.save_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1914: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1914: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1931: WARNING: py:meth reference target not found: xray.Dataset.pipe
/Users/shoyer/dev/xarray/doc/whats-new.rst:1933: WARNING: py:meth reference target not found: xray.Dataset.assign
/Users/shoyer/dev/xarray/doc/whats-new.rst:1933: WARNING: py:meth reference target not found: xray.Dataset.assign_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:1953: WARNING: py:func reference target not found: xray.open_mfdataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:1969: WARNING: py:func reference target not found: xray.concat
/Users/shoyer/dev/xarray/doc/whats-new.rst:2005: WARNING: py:meth reference target not found: xray.Dataset.to_array
/Users/shoyer/dev/xarray/doc/whats-new.rst:2005: WARNING: py:meth reference target not found: xray.DataArray.to_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2016: WARNING: py:meth reference target not found: xray.Dataset.fillna
/Users/shoyer/dev/xarray/doc/whats-new.rst:2028: WARNING: py:meth reference target not found: xray.Dataset.assign
/Users/shoyer/dev/xarray/doc/whats-new.rst:2028: WARNING: py:meth reference target not found: xray.Dataset.assign_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:2040: WARNING: py:meth reference target not found: xray.Dataset.sel
/Users/shoyer/dev/xarray/doc/whats-new.rst:2040: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:2078: WARNING: py:class reference target not found: xray.set_options
/Users/shoyer/dev/xarray/doc/whats-new.rst:2103: WARNING: py:meth reference target not found: xray.Dataset.load
/Users/shoyer/dev/xarray/doc/whats-new.rst:2117: WARNING: py:meth reference target not found: xray.Dataset.resample
/Users/shoyer/dev/xarray/doc/whats-new.rst:2155: WARNING: py:meth reference target not found: xray.Dataset.swap_dims
/Users/shoyer/dev/xarray/doc/whats-new.rst:2165: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2165: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2198: WARNING: py:func reference target not found: xray.align
/Users/shoyer/dev/xarray/doc/whats-new.rst:2198: WARNING: py:meth reference target not found: xray.Dataset.reindex_like
/Users/shoyer/dev/xarray/doc/whats-new.rst:2251: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2290: WARNING: py:meth reference target not found: xray.Dataset.reindex
/Users/shoyer/dev/xarray/doc/whats-new.rst:2303: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2305: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2308: WARNING: py:func reference target not found: xray.open_dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2308: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2311: WARNING: py:meth reference target not found: xray.Dataset.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2311: WARNING: py:meth reference target not found: xray.DataArray.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2325: WARNING: py:meth reference target not found: xray.Dataset.broadcast_equals
/Users/shoyer/dev/xarray/doc/whats-new.rst:2350: WARNING: py:meth reference target not found: xray.Dataset.to_netcdf
/Users/shoyer/dev/xarray/doc/whats-new.rst:2352: WARNING: py:meth reference target not found: xray.Dataset.drop
/Users/shoyer/dev/xarray/doc/whats-new.rst:2482: WARNING: py:meth reference target not found: xray.Dataset.count
/Users/shoyer/dev/xarray/doc/whats-new.rst:2482: WARNING: py:meth reference target not found: xray.Dataset.dropna
/Users/shoyer/dev/xarray/doc/whats-new.rst:2485: WARNING: py:meth reference target not found: xray.DataArray.to_pandas
/Users/shoyer/dev/xarray/doc/whats-new.rst:2518: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2532: WARNING: py:meth reference target not found: xray.Dataset.equals
/Users/shoyer/dev/xarray/doc/whats-new.rst:2542: WARNING: py:meth reference target not found: xray.DataArray.reset_coords
/Users/shoyer/dev/xarray/doc/whats-new.rst:2551: WARNING: unknown document: tutorial
/Users/shoyer/dev/xarray/doc/whats-new.rst:2554: WARNING: py:class reference target not found: xray.Dataset
/Users/shoyer/dev/xarray/doc/whats-new.rst:2562: WARNING: py:meth reference target not found: xray.Dataset.load_data
/Users/shoyer/dev/xarray/doc/whats-new.rst:2562: WARNING: py:meth reference target not found: xray.Dataset.close
The text was updated successfully, but these errors were encountered: