Skip to content

remove pynio from most test envs #4492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/requirements/py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies:
- pip
- pseudonetcdf
- pydap
- pynio
# - pynio: not compatible with netCDF4>1.5.3; only tested in py36-bare-minimum
- pytest
- pytest-cov
- pytest-env
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py37.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies:
- pip
- pseudonetcdf
- pydap
- pynio
# - pynio: not compatible with netCDF4>1.5.3; only tested in py36-bare-minimum
- pytest
- pytest-cov
- pytest-env
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py38-all-but-dask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies:
- pip
- pseudonetcdf
- pydap
- pynio
# - pynio: not compatible with netCDF4>1.5.3; only tested in py36-bare-minimum
- pytest
- pytest-cov
- pytest-env
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies:
- pip
- pseudonetcdf
- pydap
- pynio
# - pynio: not compatible with netCDF4>1.5.3; only tested in py36-bare-minimum
- pytest
- pytest-cov
- pytest-env
Expand Down
5 changes: 3 additions & 2 deletions doc/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ For netCDF and IO
- `pydap <http://www.pydap.org/>`__: used as a fallback for accessing OPeNDAP
- `h5netcdf <https://github.com/shoyer/h5netcdf>`__: an alternative library for
reading and writing netCDF4 files that does not use the netCDF-C libraries
- `pynio <https://www.pyngl.ucar.edu/Nio.shtml>`__: for reading GRIB and other
geoscience specific file formats. Note that pynio is not available for Windows.
- `PyNIO <https://www.pyngl.ucar.edu/Nio.shtml>`__: for reading GRIB and other
geoscience specific file formats. Note that PyNIO is not available for Windows and
that the PyNIO backend may be moved outside of xarray in the future.
- `zarr <http://zarr.readthedocs.io/>`__: for chunked, compressed, N-dimensional arrays.
- `cftime <https://unidata.github.io/cftime>`__: recommended if you
want to encode/decode datetimes for non-standard calendars or dates before
Expand Down
5 changes: 5 additions & 0 deletions doc/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,11 @@ We recommend installing PyNIO via conda::

conda install -c conda-forge pynio

.. note::

PyNIO is no longer actively maintained and conflicts with netcdf4 > 1.5.3.
The PyNIO backend may be moved outside of xarray in the future.

.. _PyNIO: https://www.pyngl.ucar.edu/Nio.shtml

.. _io.PseudoNetCDF:
Expand Down