pkgsrc/math/py-xarray/PLIST
adam ad51f61fab py-xarray: updated to 0.15.1
v0.15.1:
This release brings many new features such as :py:meth:`Dataset.weighted` methods for weighted array
reductions, a new jupyter repr by default, and the start of units integration with pint. There's also
the usual batch of usability improvements, documentation additions, and bug fixes.

Breaking changes
- Raise an error when assigning to the ``.values`` or ``.data`` attribute of
  dimension coordinates i.e. ``IndexVariable`` objects. This has been broken since
  v0.12.0. Please use :py:meth:`DataArray.assign_coords` or :py:meth:`Dataset.assign_coords`
  instead.

New Features
- Weighted array reductions are now supported via the new :py:meth:`DataArray.weighted`
  and :py:meth:`Dataset.weighted` methods. See :ref:`comput.weighted`.
- The new jupyter notebook repr (``Dataset._repr_html_`` and
  ``DataArray._repr_html_``) (introduced in 0.14.1) is now on by default. To
  disable, use ``xarray.set_options(display_style="text")``.
- Added support for :py:class:`pandas.DatetimeIndex`-style rounding of
  ``cftime.datetime`` objects directly via a :py:class:`CFTimeIndex` or via the
  :py:class:`~core.accessor_dt.DatetimeAccessor`.
- Support new h5netcdf backend keyword `phony_dims` (available from h5netcdf
  v0.8.0 for :py:class:`~xarray.backends.H5NetCDFStore`.
- Add partial support for unit aware arrays with pint.
- :py:meth:`Dataset.groupby` and :py:meth:`DataArray.groupby` now raise a
  `TypeError` on multiple string arguments. Receiving multiple string arguments
  often means a user is attempting to pass multiple dimensions as separate
  arguments and should instead pass a single list of dimensions.
- :py:func:`map_blocks` can now apply functions that add new unindexed dimensions.
- An ellipsis (``...``) is now supported in the ``dims`` argument of
  :py:meth:`Dataset.stack` and :py:meth:`DataArray.stack`, meaning all
  unlisted dimensions, similar to its meaning in :py:meth:`DataArray.transpose`.
- :py:meth:`Dataset.where` and :py:meth:`DataArray.where` accept a lambda as a
  first argument, which is then called on the input; replicating pandas' behavior.
- ``skipna`` is available in :py:meth:`Dataset.quantile`, :py:meth:`DataArray.quantile`,
  :py:meth:`core.groupby.DatasetGroupBy.quantile`, :py:meth:`core.groupby.DataArrayGroupBy.quantile`

Bug fixes
- Fix :py:meth:`Dataset.interp` when indexing array shares coordinates with the
  indexed variable
- Fix recombination of groups in :py:meth:`Dataset.groupby` and
  :py:meth:`DataArray.groupby` when performing an operation that changes the
  size of the groups along the grouped dimension. By `Eric Jansen
  <https://github.com/ej81>`_.
- Fix use of multi-index with categorical values
- Fix alignment with ``join="override"`` when some dimensions are unindexed.
- Fix :py:meth:`Dataset.swap_dims` and :py:meth:`DataArray.swap_dims` producing
  index with name reflecting the previous dimension name instead of the new one
- Use ``dask_array_type`` instead of ``dask_array.Array`` for type
  checking.
- :py:func:`concat` can now handle coordinate variables only present in one of
  the objects to be concatenated when ``coords="different"``.
- xarray now respects the over, under and bad colors if set on a provided colormap.
- :py:func:`coarsen` now respects ``xr.set_options(keep_attrs=True)``
  to preserve attributes. :py:meth:`Dataset.coarsen` accepts a keyword
  argument ``keep_attrs`` to change this setting.
  :pull:`3801`) By `Andrew Thomas <https://github.com/amcnicho>`_.
- Delete associated indexes when deleting coordinate variables.
- Fix :py:meth:`xarray.core.dataset.Dataset.to_zarr` when using `append_dim` and `group`
  simultaneously.
- Fix html repr on :py:class:`Dataset` with non-string keys

Documentation
- Fix documentation of :py:class:`DataArray` removing the deprecated mention
  that when omitted, `dims` are inferred from a `coords`-dict.
- Improve the :py:func:`where` docstring.
- Update the installation instructions: only explicitly list recommended dependencies

Internal Changes
- Remove the internal ``import_seaborn`` function which handled the deprecation of
  the ``seaborn.apionly`` entry point
- Don't test pint integration in combination with datetime objects.
- Change test_open_mfdataset_list_attr to only run with dask installed
- Preserve the ability to index with ``method="nearest"`` with a
  :py:class:`CFTimeIndex` with pandas versions greater than 1.0.1
- Greater flexibility and improved test coverage of subtracting various types
  of objects from a :py:class:`CFTimeIndex`. By `Spencer Clark
  <https://github.com/spencerkclark>`_.
- Update Azure CI MacOS image, given pending removal.
- Remove xfails for scipy 1.0.1 for tests that append to netCDF files
- Remove conversion to :py:class:`pandas.Panel`, given its removal in pandas
  in favor of xarray's objects.


v0.15.0:
This release brings many improvements to xarray's documentation: our examples are now binderized notebooks (`click here <https://mybinder.org/v2/gh/pydata/xarray/master?urlpath=lab/tree/doc/examples/weather-data.ipynb>`_)
and we have new example notebooks from our SciPy 2019 sprint (many thanks to our contributors!).

This release also features many API improvements such as a new
:py:class:`~core.accessor_dt.TimedeltaAccessor` and support for :py:class:`CFTimeIndex` in
:py:meth:`~DataArray.interpolate_na`); as well as many bug fixes.

Breaking changes
- Bumped minimum tested versions for dependencies:
  - numpy 1.15
  - pandas 0.25
  - dask 2.2
  - distributed 2.2
  - scipy 1.3

- Remove ``compat`` and ``encoding`` kwargs from ``DataArray``, which
  have been deprecated since 0.12.
  Instead, specify the ``encoding`` kwarg when writing to disk or set
  the :py:attr:`DataArray.encoding` attribute directly.
- :py:func:`xarray.dot`, :py:meth:`DataArray.dot`, and the ``@`` operator now
  use ``align="inner"`` (except when ``xarray.set_options(arithmetic_join="exact")``;

New Features
- Implement :py:meth:`DataArray.pad` and :py:meth:`Dataset.pad`.
- :py:meth:`DataArray.sel` and :py:meth:`Dataset.sel` now support :py:class:`pandas.CategoricalIndex`.
- Support using an existing, opened h5netcdf ``File`` with
  :py:class:`~xarray.backends.H5NetCDFStore`. This permits creating an
  :py:class:`~xarray.Dataset` from a h5netcdf ``File`` that has been opened
  using other means
- Implement ``median`` and ``nanmedian`` for dask arrays. This works by rechunking
  to a single chunk along all reduction axes.
- :py:func:`~xarray.concat` now preserves attributes from the first Variable.
- :py:meth:`Dataset.quantile`, :py:meth:`DataArray.quantile` and ``GroupBy.quantile``
  now work with dask Variables.
- Added the ``count`` reduction method to both :py:class:`~core.rolling.DatasetCoarsen`
  and :py:class:`~core.rolling.DataArrayCoarsen` objects.
- Add ``meta`` kwarg to :py:func:`~xarray.apply_ufunc`;
  this is passed on to :py:func:`dask.array.blockwise`.
- Add ``attrs_file`` option in :py:func:`~xarray.open_mfdataset` to choose the
  source file for global attributes in a multi-file dataset
  :pull:`3498`). By `Julien Seguinot <https://github.com/juseg>`_.
- :py:meth:`Dataset.swap_dims` and :py:meth:`DataArray.swap_dims`
  now allow swapping to dimension names that don't exist yet.
- Extend :py:class:`~core.accessor_dt.DatetimeAccessor` properties
  and support ``.dt`` accessor for timedeltas
  via :py:class:`~core.accessor_dt.TimedeltaAccessor`
- Improvements to interpolating along time axes
  - Support :py:class:`CFTimeIndex` in :py:meth:`DataArray.interpolate_na`
  - define 1970-01-01 as the default offset for the interpolation index for both
    :py:class:`pandas.DatetimeIndex` and :py:class:`CFTimeIndex`,
  - use microseconds in the conversion from timedelta objects to floats to avoid
    overflow errors.

Bug fixes
- Applying a user-defined function that adds new dimensions using :py:func:`apply_ufunc`
  and ``vectorize=True`` now works with ``dask > 2.0``.
- Fix :py:meth:`~xarray.combine_by_coords` to allow for combining incomplete
  hypercubes of Datasets
- Fix :py:func:`~xarray.combine_by_coords` when combining cftime coordinates
  which span long time intervals
- Fix plotting with transposed 2D non-dimensional coordinates.
- :py:meth:`plot.FacetGrid.set_titles` can now replace existing row titles of a
  :py:class:`~xarray.plot.FacetGrid` plot. In addition :py:class:`~xarray.plot.FacetGrid` gained
  two new attributes: :py:attr:`~xarray.plot.FacetGrid.col_labels` and
  :py:attr:`~xarray.plot.FacetGrid.row_labels` contain :py:class:`matplotlib.text.Text` handles for both column and
  row labels. These can be used to manually change the labels.
- Fix issue with Dask-backed datasets raising a ``KeyError`` on some computations involving :py:func:`map_blocks`
- Ensure :py:meth:`Dataset.quantile`, :py:meth:`DataArray.quantile` issue the correct error
  when ``q`` is out of bounds
- Fix regression in xarray 0.14.1 that prevented encoding times with certain
  ``dtype``, ``_FillValue``, and ``missing_value`` encodings
- Raise an error when trying to use :py:meth:`Dataset.rename_dims` to
  rename to an existing name
- :py:meth:`Dataset.rename`, :py:meth:`DataArray.rename` now check for conflicts with
  MultiIndex level names.
- :py:meth:`Dataset.merge` no longer fails when passed a :py:class:`DataArray` instead of a :py:class:`Dataset`.
- Fix a regression in :py:meth:`Dataset.drop`: allow passing any
  iterable when dropping variables
- Fixed errors emitted by ``mypy --strict`` in modules that import xarray.
- Allow plotting of binned coordinates on the y axis in :py:meth:`plot.line`
  and :py:meth:`plot.step` plots
- setuptools is now marked as a dependency of xarray

Documentation
- Switch doc examples to use `nbsphinx <https://nbsphinx.readthedocs.io>`_ and replace
  ``sphinx_gallery`` scripts with Jupyter notebooks.
- Added :doc:`example notebook <examples/ROMS_ocean_model>` demonstrating use of xarray with
  Regional Ocean Modeling System (ROMS) ocean hydrodynamic model output.
- Added :doc:`example notebook <examples/ERA5-GRIB-example>` demonstrating the visualization of
  ERA5 GRIB data.
  `Stephan Siemen <https://github.com/StephanSiemen>`_.
- Added examples for :py:meth:`DataArray.quantile`, :py:meth:`Dataset.quantile` and
  ``GroupBy.quantile``.
- Add new :doc:`example notebook <examples/apply_ufunc_vectorize_1d>` example notebook demonstrating
  vectorization of a 1D function using :py:func:`apply_ufunc` , dask and numba.
- Added example for :py:func:`~xarray.map_blocks`.

Internal Changes
- Make sure dask names change when rechunking by different chunk sizes. Conversely, make sure they
  stay the same when rechunking by the same chunk size.
- 2x to 5x speed boost (on small arrays) for :py:meth:`Dataset.isel`,
  :py:meth:`DataArray.isel`, and :py:meth:`DataArray.__getitem__` when indexing by int,
  slice, list of int, scalar ndarray, or 1-dimensional ndarray.
- Removed internal method ``Dataset._from_vars_and_coord_names``,
  which was dominated by ``Dataset._construct_direct``.
- Replaced versioneer with setuptools-scm. Moved contents of setup.py to setup.cfg.
  Removed pytest-runner from setup.py, as per deprecation notice on the pytest-runner
  project.
- Use of isort is now enforced by CI.
2020-04-11 13:47:08 +00:00

376 lines
15 KiB
Text

@comment $NetBSD: PLIST,v 1.2 2020/04/11 13:47:08 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/xarray/__init__.py
${PYSITELIB}/xarray/__init__.pyc
${PYSITELIB}/xarray/__init__.pyo
${PYSITELIB}/xarray/backends/__init__.py
${PYSITELIB}/xarray/backends/__init__.pyc
${PYSITELIB}/xarray/backends/__init__.pyo
${PYSITELIB}/xarray/backends/api.py
${PYSITELIB}/xarray/backends/api.pyc
${PYSITELIB}/xarray/backends/api.pyo
${PYSITELIB}/xarray/backends/cfgrib_.py
${PYSITELIB}/xarray/backends/cfgrib_.pyc
${PYSITELIB}/xarray/backends/cfgrib_.pyo
${PYSITELIB}/xarray/backends/common.py
${PYSITELIB}/xarray/backends/common.pyc
${PYSITELIB}/xarray/backends/common.pyo
${PYSITELIB}/xarray/backends/file_manager.py
${PYSITELIB}/xarray/backends/file_manager.pyc
${PYSITELIB}/xarray/backends/file_manager.pyo
${PYSITELIB}/xarray/backends/h5netcdf_.py
${PYSITELIB}/xarray/backends/h5netcdf_.pyc
${PYSITELIB}/xarray/backends/h5netcdf_.pyo
${PYSITELIB}/xarray/backends/locks.py
${PYSITELIB}/xarray/backends/locks.pyc
${PYSITELIB}/xarray/backends/locks.pyo
${PYSITELIB}/xarray/backends/lru_cache.py
${PYSITELIB}/xarray/backends/lru_cache.pyc
${PYSITELIB}/xarray/backends/lru_cache.pyo
${PYSITELIB}/xarray/backends/memory.py
${PYSITELIB}/xarray/backends/memory.pyc
${PYSITELIB}/xarray/backends/memory.pyo
${PYSITELIB}/xarray/backends/netCDF4_.py
${PYSITELIB}/xarray/backends/netCDF4_.pyc
${PYSITELIB}/xarray/backends/netCDF4_.pyo
${PYSITELIB}/xarray/backends/netcdf3.py
${PYSITELIB}/xarray/backends/netcdf3.pyc
${PYSITELIB}/xarray/backends/netcdf3.pyo
${PYSITELIB}/xarray/backends/pseudonetcdf_.py
${PYSITELIB}/xarray/backends/pseudonetcdf_.pyc
${PYSITELIB}/xarray/backends/pseudonetcdf_.pyo
${PYSITELIB}/xarray/backends/pydap_.py
${PYSITELIB}/xarray/backends/pydap_.pyc
${PYSITELIB}/xarray/backends/pydap_.pyo
${PYSITELIB}/xarray/backends/pynio_.py
${PYSITELIB}/xarray/backends/pynio_.pyc
${PYSITELIB}/xarray/backends/pynio_.pyo
${PYSITELIB}/xarray/backends/rasterio_.py
${PYSITELIB}/xarray/backends/rasterio_.pyc
${PYSITELIB}/xarray/backends/rasterio_.pyo
${PYSITELIB}/xarray/backends/scipy_.py
${PYSITELIB}/xarray/backends/scipy_.pyc
${PYSITELIB}/xarray/backends/scipy_.pyo
${PYSITELIB}/xarray/backends/zarr.py
${PYSITELIB}/xarray/backends/zarr.pyc
${PYSITELIB}/xarray/backends/zarr.pyo
${PYSITELIB}/xarray/coding/__init__.py
${PYSITELIB}/xarray/coding/__init__.pyc
${PYSITELIB}/xarray/coding/__init__.pyo
${PYSITELIB}/xarray/coding/cftime_offsets.py
${PYSITELIB}/xarray/coding/cftime_offsets.pyc
${PYSITELIB}/xarray/coding/cftime_offsets.pyo
${PYSITELIB}/xarray/coding/cftimeindex.py
${PYSITELIB}/xarray/coding/cftimeindex.pyc
${PYSITELIB}/xarray/coding/cftimeindex.pyo
${PYSITELIB}/xarray/coding/strings.py
${PYSITELIB}/xarray/coding/strings.pyc
${PYSITELIB}/xarray/coding/strings.pyo
${PYSITELIB}/xarray/coding/times.py
${PYSITELIB}/xarray/coding/times.pyc
${PYSITELIB}/xarray/coding/times.pyo
${PYSITELIB}/xarray/coding/variables.py
${PYSITELIB}/xarray/coding/variables.pyc
${PYSITELIB}/xarray/coding/variables.pyo
${PYSITELIB}/xarray/conventions.py
${PYSITELIB}/xarray/conventions.pyc
${PYSITELIB}/xarray/conventions.pyo
${PYSITELIB}/xarray/convert.py
${PYSITELIB}/xarray/convert.pyc
${PYSITELIB}/xarray/convert.pyo
${PYSITELIB}/xarray/core/__init__.py
${PYSITELIB}/xarray/core/__init__.pyc
${PYSITELIB}/xarray/core/__init__.pyo
${PYSITELIB}/xarray/core/accessor_dt.py
${PYSITELIB}/xarray/core/accessor_dt.pyc
${PYSITELIB}/xarray/core/accessor_dt.pyo
${PYSITELIB}/xarray/core/accessor_str.py
${PYSITELIB}/xarray/core/accessor_str.pyc
${PYSITELIB}/xarray/core/accessor_str.pyo
${PYSITELIB}/xarray/core/alignment.py
${PYSITELIB}/xarray/core/alignment.pyc
${PYSITELIB}/xarray/core/alignment.pyo
${PYSITELIB}/xarray/core/arithmetic.py
${PYSITELIB}/xarray/core/arithmetic.pyc
${PYSITELIB}/xarray/core/arithmetic.pyo
${PYSITELIB}/xarray/core/combine.py
${PYSITELIB}/xarray/core/combine.pyc
${PYSITELIB}/xarray/core/combine.pyo
${PYSITELIB}/xarray/core/common.py
${PYSITELIB}/xarray/core/common.pyc
${PYSITELIB}/xarray/core/common.pyo
${PYSITELIB}/xarray/core/computation.py
${PYSITELIB}/xarray/core/computation.pyc
${PYSITELIB}/xarray/core/computation.pyo
${PYSITELIB}/xarray/core/concat.py
${PYSITELIB}/xarray/core/concat.pyc
${PYSITELIB}/xarray/core/concat.pyo
${PYSITELIB}/xarray/core/coordinates.py
${PYSITELIB}/xarray/core/coordinates.pyc
${PYSITELIB}/xarray/core/coordinates.pyo
${PYSITELIB}/xarray/core/dask_array_compat.py
${PYSITELIB}/xarray/core/dask_array_compat.pyc
${PYSITELIB}/xarray/core/dask_array_compat.pyo
${PYSITELIB}/xarray/core/dask_array_ops.py
${PYSITELIB}/xarray/core/dask_array_ops.pyc
${PYSITELIB}/xarray/core/dask_array_ops.pyo
${PYSITELIB}/xarray/core/dataarray.py
${PYSITELIB}/xarray/core/dataarray.pyc
${PYSITELIB}/xarray/core/dataarray.pyo
${PYSITELIB}/xarray/core/dataset.py
${PYSITELIB}/xarray/core/dataset.pyc
${PYSITELIB}/xarray/core/dataset.pyo
${PYSITELIB}/xarray/core/dtypes.py
${PYSITELIB}/xarray/core/dtypes.pyc
${PYSITELIB}/xarray/core/dtypes.pyo
${PYSITELIB}/xarray/core/duck_array_ops.py
${PYSITELIB}/xarray/core/duck_array_ops.pyc
${PYSITELIB}/xarray/core/duck_array_ops.pyo
${PYSITELIB}/xarray/core/extensions.py
${PYSITELIB}/xarray/core/extensions.pyc
${PYSITELIB}/xarray/core/extensions.pyo
${PYSITELIB}/xarray/core/formatting.py
${PYSITELIB}/xarray/core/formatting.pyc
${PYSITELIB}/xarray/core/formatting.pyo
${PYSITELIB}/xarray/core/formatting_html.py
${PYSITELIB}/xarray/core/formatting_html.pyc
${PYSITELIB}/xarray/core/formatting_html.pyo
${PYSITELIB}/xarray/core/groupby.py
${PYSITELIB}/xarray/core/groupby.pyc
${PYSITELIB}/xarray/core/groupby.pyo
${PYSITELIB}/xarray/core/indexes.py
${PYSITELIB}/xarray/core/indexes.pyc
${PYSITELIB}/xarray/core/indexes.pyo
${PYSITELIB}/xarray/core/indexing.py
${PYSITELIB}/xarray/core/indexing.pyc
${PYSITELIB}/xarray/core/indexing.pyo
${PYSITELIB}/xarray/core/merge.py
${PYSITELIB}/xarray/core/merge.pyc
${PYSITELIB}/xarray/core/merge.pyo
${PYSITELIB}/xarray/core/missing.py
${PYSITELIB}/xarray/core/missing.pyc
${PYSITELIB}/xarray/core/missing.pyo
${PYSITELIB}/xarray/core/nanops.py
${PYSITELIB}/xarray/core/nanops.pyc
${PYSITELIB}/xarray/core/nanops.pyo
${PYSITELIB}/xarray/core/npcompat.py
${PYSITELIB}/xarray/core/npcompat.pyc
${PYSITELIB}/xarray/core/npcompat.pyo
${PYSITELIB}/xarray/core/nputils.py
${PYSITELIB}/xarray/core/nputils.pyc
${PYSITELIB}/xarray/core/nputils.pyo
${PYSITELIB}/xarray/core/ops.py
${PYSITELIB}/xarray/core/ops.pyc
${PYSITELIB}/xarray/core/ops.pyo
${PYSITELIB}/xarray/core/options.py
${PYSITELIB}/xarray/core/options.pyc
${PYSITELIB}/xarray/core/options.pyo
${PYSITELIB}/xarray/core/parallel.py
${PYSITELIB}/xarray/core/parallel.pyc
${PYSITELIB}/xarray/core/parallel.pyo
${PYSITELIB}/xarray/core/pdcompat.py
${PYSITELIB}/xarray/core/pdcompat.pyc
${PYSITELIB}/xarray/core/pdcompat.pyo
${PYSITELIB}/xarray/core/pycompat.py
${PYSITELIB}/xarray/core/pycompat.pyc
${PYSITELIB}/xarray/core/pycompat.pyo
${PYSITELIB}/xarray/core/resample.py
${PYSITELIB}/xarray/core/resample.pyc
${PYSITELIB}/xarray/core/resample.pyo
${PYSITELIB}/xarray/core/resample_cftime.py
${PYSITELIB}/xarray/core/resample_cftime.pyc
${PYSITELIB}/xarray/core/resample_cftime.pyo
${PYSITELIB}/xarray/core/rolling.py
${PYSITELIB}/xarray/core/rolling.pyc
${PYSITELIB}/xarray/core/rolling.pyo
${PYSITELIB}/xarray/core/rolling_exp.py
${PYSITELIB}/xarray/core/rolling_exp.pyc
${PYSITELIB}/xarray/core/rolling_exp.pyo
${PYSITELIB}/xarray/core/utils.py
${PYSITELIB}/xarray/core/utils.pyc
${PYSITELIB}/xarray/core/utils.pyo
${PYSITELIB}/xarray/core/variable.py
${PYSITELIB}/xarray/core/variable.pyc
${PYSITELIB}/xarray/core/variable.pyo
${PYSITELIB}/xarray/core/weighted.py
${PYSITELIB}/xarray/core/weighted.pyc
${PYSITELIB}/xarray/core/weighted.pyo
${PYSITELIB}/xarray/plot/__init__.py
${PYSITELIB}/xarray/plot/__init__.pyc
${PYSITELIB}/xarray/plot/__init__.pyo
${PYSITELIB}/xarray/plot/dataset_plot.py
${PYSITELIB}/xarray/plot/dataset_plot.pyc
${PYSITELIB}/xarray/plot/dataset_plot.pyo
${PYSITELIB}/xarray/plot/facetgrid.py
${PYSITELIB}/xarray/plot/facetgrid.pyc
${PYSITELIB}/xarray/plot/facetgrid.pyo
${PYSITELIB}/xarray/plot/plot.py
${PYSITELIB}/xarray/plot/plot.pyc
${PYSITELIB}/xarray/plot/plot.pyo
${PYSITELIB}/xarray/plot/utils.py
${PYSITELIB}/xarray/plot/utils.pyc
${PYSITELIB}/xarray/plot/utils.pyo
${PYSITELIB}/xarray/py.typed
${PYSITELIB}/xarray/static/css/style.css
${PYSITELIB}/xarray/static/html/icons-svg-inline.html
${PYSITELIB}/xarray/testing.py
${PYSITELIB}/xarray/testing.pyc
${PYSITELIB}/xarray/testing.pyo
${PYSITELIB}/xarray/tests/__init__.py
${PYSITELIB}/xarray/tests/__init__.pyc
${PYSITELIB}/xarray/tests/__init__.pyo
${PYSITELIB}/xarray/tests/data/bears.nc
${PYSITELIB}/xarray/tests/data/example.grib
${PYSITELIB}/xarray/tests/data/example.ict
${PYSITELIB}/xarray/tests/data/example.uamiv
${PYSITELIB}/xarray/tests/data/example_1.nc
${PYSITELIB}/xarray/tests/data/example_1.nc.gz
${PYSITELIB}/xarray/tests/test_accessor_dt.py
${PYSITELIB}/xarray/tests/test_accessor_dt.pyc
${PYSITELIB}/xarray/tests/test_accessor_dt.pyo
${PYSITELIB}/xarray/tests/test_accessor_str.py
${PYSITELIB}/xarray/tests/test_accessor_str.pyc
${PYSITELIB}/xarray/tests/test_accessor_str.pyo
${PYSITELIB}/xarray/tests/test_backends.py
${PYSITELIB}/xarray/tests/test_backends.pyc
${PYSITELIB}/xarray/tests/test_backends.pyo
${PYSITELIB}/xarray/tests/test_backends_api.py
${PYSITELIB}/xarray/tests/test_backends_api.pyc
${PYSITELIB}/xarray/tests/test_backends_api.pyo
${PYSITELIB}/xarray/tests/test_backends_common.py
${PYSITELIB}/xarray/tests/test_backends_common.pyc
${PYSITELIB}/xarray/tests/test_backends_common.pyo
${PYSITELIB}/xarray/tests/test_backends_file_manager.py
${PYSITELIB}/xarray/tests/test_backends_file_manager.pyc
${PYSITELIB}/xarray/tests/test_backends_file_manager.pyo
${PYSITELIB}/xarray/tests/test_backends_locks.py
${PYSITELIB}/xarray/tests/test_backends_locks.pyc
${PYSITELIB}/xarray/tests/test_backends_locks.pyo
${PYSITELIB}/xarray/tests/test_backends_lru_cache.py
${PYSITELIB}/xarray/tests/test_backends_lru_cache.pyc
${PYSITELIB}/xarray/tests/test_backends_lru_cache.pyo
${PYSITELIB}/xarray/tests/test_cftime_offsets.py
${PYSITELIB}/xarray/tests/test_cftime_offsets.pyc
${PYSITELIB}/xarray/tests/test_cftime_offsets.pyo
${PYSITELIB}/xarray/tests/test_cftimeindex.py
${PYSITELIB}/xarray/tests/test_cftimeindex.pyc
${PYSITELIB}/xarray/tests/test_cftimeindex.pyo
${PYSITELIB}/xarray/tests/test_cftimeindex_resample.py
${PYSITELIB}/xarray/tests/test_cftimeindex_resample.pyc
${PYSITELIB}/xarray/tests/test_cftimeindex_resample.pyo
${PYSITELIB}/xarray/tests/test_coding.py
${PYSITELIB}/xarray/tests/test_coding.pyc
${PYSITELIB}/xarray/tests/test_coding.pyo
${PYSITELIB}/xarray/tests/test_coding_strings.py
${PYSITELIB}/xarray/tests/test_coding_strings.pyc
${PYSITELIB}/xarray/tests/test_coding_strings.pyo
${PYSITELIB}/xarray/tests/test_coding_times.py
${PYSITELIB}/xarray/tests/test_coding_times.pyc
${PYSITELIB}/xarray/tests/test_coding_times.pyo
${PYSITELIB}/xarray/tests/test_combine.py
${PYSITELIB}/xarray/tests/test_combine.pyc
${PYSITELIB}/xarray/tests/test_combine.pyo
${PYSITELIB}/xarray/tests/test_computation.py
${PYSITELIB}/xarray/tests/test_computation.pyc
${PYSITELIB}/xarray/tests/test_computation.pyo
${PYSITELIB}/xarray/tests/test_concat.py
${PYSITELIB}/xarray/tests/test_concat.pyc
${PYSITELIB}/xarray/tests/test_concat.pyo
${PYSITELIB}/xarray/tests/test_conventions.py
${PYSITELIB}/xarray/tests/test_conventions.pyc
${PYSITELIB}/xarray/tests/test_conventions.pyo
${PYSITELIB}/xarray/tests/test_dask.py
${PYSITELIB}/xarray/tests/test_dask.pyc
${PYSITELIB}/xarray/tests/test_dask.pyo
${PYSITELIB}/xarray/tests/test_dataarray.py
${PYSITELIB}/xarray/tests/test_dataarray.pyc
${PYSITELIB}/xarray/tests/test_dataarray.pyo
${PYSITELIB}/xarray/tests/test_dataset.py
${PYSITELIB}/xarray/tests/test_dataset.pyc
${PYSITELIB}/xarray/tests/test_dataset.pyo
${PYSITELIB}/xarray/tests/test_distributed.py
${PYSITELIB}/xarray/tests/test_distributed.pyc
${PYSITELIB}/xarray/tests/test_distributed.pyo
${PYSITELIB}/xarray/tests/test_dtypes.py
${PYSITELIB}/xarray/tests/test_dtypes.pyc
${PYSITELIB}/xarray/tests/test_dtypes.pyo
${PYSITELIB}/xarray/tests/test_duck_array_ops.py
${PYSITELIB}/xarray/tests/test_duck_array_ops.pyc
${PYSITELIB}/xarray/tests/test_duck_array_ops.pyo
${PYSITELIB}/xarray/tests/test_extensions.py
${PYSITELIB}/xarray/tests/test_extensions.pyc
${PYSITELIB}/xarray/tests/test_extensions.pyo
${PYSITELIB}/xarray/tests/test_formatting.py
${PYSITELIB}/xarray/tests/test_formatting.pyc
${PYSITELIB}/xarray/tests/test_formatting.pyo
${PYSITELIB}/xarray/tests/test_formatting_html.py
${PYSITELIB}/xarray/tests/test_formatting_html.pyc
${PYSITELIB}/xarray/tests/test_formatting_html.pyo
${PYSITELIB}/xarray/tests/test_groupby.py
${PYSITELIB}/xarray/tests/test_groupby.pyc
${PYSITELIB}/xarray/tests/test_groupby.pyo
${PYSITELIB}/xarray/tests/test_indexing.py
${PYSITELIB}/xarray/tests/test_indexing.pyc
${PYSITELIB}/xarray/tests/test_indexing.pyo
${PYSITELIB}/xarray/tests/test_interp.py
${PYSITELIB}/xarray/tests/test_interp.pyc
${PYSITELIB}/xarray/tests/test_interp.pyo
${PYSITELIB}/xarray/tests/test_merge.py
${PYSITELIB}/xarray/tests/test_merge.pyc
${PYSITELIB}/xarray/tests/test_merge.pyo
${PYSITELIB}/xarray/tests/test_missing.py
${PYSITELIB}/xarray/tests/test_missing.pyc
${PYSITELIB}/xarray/tests/test_missing.pyo
${PYSITELIB}/xarray/tests/test_nputils.py
${PYSITELIB}/xarray/tests/test_nputils.pyc
${PYSITELIB}/xarray/tests/test_nputils.pyo
${PYSITELIB}/xarray/tests/test_options.py
${PYSITELIB}/xarray/tests/test_options.pyc
${PYSITELIB}/xarray/tests/test_options.pyo
${PYSITELIB}/xarray/tests/test_plot.py
${PYSITELIB}/xarray/tests/test_plot.pyc
${PYSITELIB}/xarray/tests/test_plot.pyo
${PYSITELIB}/xarray/tests/test_print_versions.py
${PYSITELIB}/xarray/tests/test_print_versions.pyc
${PYSITELIB}/xarray/tests/test_print_versions.pyo
${PYSITELIB}/xarray/tests/test_sparse.py
${PYSITELIB}/xarray/tests/test_sparse.pyc
${PYSITELIB}/xarray/tests/test_sparse.pyo
${PYSITELIB}/xarray/tests/test_testing.py
${PYSITELIB}/xarray/tests/test_testing.pyc
${PYSITELIB}/xarray/tests/test_testing.pyo
${PYSITELIB}/xarray/tests/test_tutorial.py
${PYSITELIB}/xarray/tests/test_tutorial.pyc
${PYSITELIB}/xarray/tests/test_tutorial.pyo
${PYSITELIB}/xarray/tests/test_ufuncs.py
${PYSITELIB}/xarray/tests/test_ufuncs.pyc
${PYSITELIB}/xarray/tests/test_ufuncs.pyo
${PYSITELIB}/xarray/tests/test_units.py
${PYSITELIB}/xarray/tests/test_units.pyc
${PYSITELIB}/xarray/tests/test_units.pyo
${PYSITELIB}/xarray/tests/test_utils.py
${PYSITELIB}/xarray/tests/test_utils.pyc
${PYSITELIB}/xarray/tests/test_utils.pyo
${PYSITELIB}/xarray/tests/test_variable.py
${PYSITELIB}/xarray/tests/test_variable.pyc
${PYSITELIB}/xarray/tests/test_variable.pyo
${PYSITELIB}/xarray/tests/test_weighted.py
${PYSITELIB}/xarray/tests/test_weighted.pyc
${PYSITELIB}/xarray/tests/test_weighted.pyo
${PYSITELIB}/xarray/tutorial.py
${PYSITELIB}/xarray/tutorial.pyc
${PYSITELIB}/xarray/tutorial.pyo
${PYSITELIB}/xarray/ufuncs.py
${PYSITELIB}/xarray/ufuncs.pyc
${PYSITELIB}/xarray/ufuncs.pyo
${PYSITELIB}/xarray/util/__init__.py
${PYSITELIB}/xarray/util/__init__.pyc
${PYSITELIB}/xarray/util/__init__.pyo
${PYSITELIB}/xarray/util/print_versions.py
${PYSITELIB}/xarray/util/print_versions.pyc
${PYSITELIB}/xarray/util/print_versions.pyo