diff --git a/CHANGELOG.md b/CHANGELOG.md index 66f1720..b45f4fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Please add your functional changes to the appropriate section in the PR. Keep it human-readable, your future self will thank you! -## [Unreleased](https://github.com/ecmwf/anemoi-datasets/compare/0.5.7...HEAD) +## [Unreleased](https://github.com/ecmwf/anemoi-datasets/compare/0.5.8...HEAD) + +## [0.5.8](https://github.com/ecmwf/anemoi-datasets/compare/0.5.7...0.5.8) - 2024-10-26 ### Changed @@ -25,6 +27,7 @@ Keep it human-readable, your future self will thank you! - Add `merge` feature - Add support for storing `supporting_arrays` in checkpoint files - Allow naming of datasets components +- Contributors file (#105) ### Changed diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..d414dc2 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,13 @@ +## How to Contribute + +Please see the [read the docs](https://anemoi-training.readthedocs.io/en/latest/dev/contributing.html). + + +## Contributors + +Thank you to all the wonderful people who have contributed to Anemoi. Contributions can come in many forms, including code, documentation, bug reports, feature suggestions, design, and more. A list of code-based contributors can be found [here](https://github.com/ecmwf/anemoi-datasets/graphs/contributors). + + +## Contributing Organisations + +Significant contributions have been made by the following organisations: [DWD](https://www.dwd.de/), [MET Norway](https://www.met.no/), [MeteoSwiss](https://www.meteoswiss.admin.ch/), [RMI](https://www.meteo.be/) & [ECMWF](https://www.ecmwf.int/) diff --git a/src/anemoi/datasets/data/__init__.py b/src/anemoi/datasets/data/__init__.py index 13fd430..5f2d6a8 100644 --- a/src/anemoi/datasets/data/__init__.py +++ b/src/anemoi/datasets/data/__init__.py @@ -46,7 +46,8 @@ def _convert(x): def open_dataset(*args, **kwargs): - # That will get rif of OmegaConf objects + # That will get rid of OmegaConf objects + args, kwargs = _convert(args), _convert(kwargs) ds = _open_dataset(*args, **kwargs)