Skip to content
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 .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: "Install dependencies"
run: |
conda install --yes pytest iris xarray filelock requests
conda install --yes pytest pytest-mock iris xarray filelock requests

- name: "Install *latest* Iris"
run: |
Expand Down
3 changes: 3 additions & 0 deletions docs/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Unreleased
^^^^^^^^^^
TODO: highlights

* `@pp-mo`_ dataset comparison routines now a public utility.
(`PR#70 <https://github.com/pp-mo/ncdata/pull/70>`_).

* `@pp-mo`_ initial Sphinx documentation
(`PR#76 <https://github.com/pp-mo/ncdata/pull/76>`_).

Expand Down
7 changes: 6 additions & 1 deletion lib/ncdata/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
"""General user utility functions."""

from ._compare_nc_datasets import dataset_differences, variable_differences
from ._save_errors import save_errors

__all__ = ["save_errors"]
__all__ = [
"save_errors",
"dataset_differences",
"variable_differences",
]
Loading