Skip to content

Commit

Permalink
Prepare v0.12.0 (#305)
Browse files Browse the repository at this point in the history
* update history

* Remove xarray pin - will be added in daops; add minimum matplotlib version

---------

Co-authored-by: Trevor James Smith <[email protected]>
Co-authored-by: sol1105 <[email protected]>
  • Loading branch information
3 people authored Nov 24, 2023
1 parent 6646478 commit 137be62
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
Version History
===============

v0.12.0 (unreleased)
v0.12.0 (2023-11-23)
--------------------

New Features
^^^^^^^^^^^^
* ``clisops.ops.regrid``, ``clisops.core.regrid``, ``clisops.core.Weights`` and ``clisops.core.Grid`` added (#TBA). Allowing the remapping of geospatial data on various grids by applying the `xESMF <https://pangeo-xesmf.readthedocs.io/en/latest/>`_ regridder.
* ``clisops.ops.regrid``, ``clisops.core.regrid``, ``clisops.core.Weights`` and ``clisops.core.Grid`` added (#243). Allowing the remapping of geospatial data on various grids by applying the `xESMF <https://pangeo-xesmf.readthedocs.io/en/latest/>`_ regridder.

Bug Fixes
^^^^^^^^^
* Calling `subset_shape()` with a `locstream case` (#288) returned all coordinates inside `inner_mask` which is equivalent to the bounding box of the polygon, not the area inside the polygon. Fixed by defining the `inner_mask` in `subset_shape()` for the locstream case. (#292).

Other Changes
^^^^^^^^^^^^^
* Extending the removal of redundant _FillValue attributes to all data variables and coordinates.
* Extending the removal of redundant coordinates in the coordinates variable attribute from bounds to all data variables.
* Extending the removal of redundant _FillValue attributes to all data variables and coordinates (#243).
* Extending the removal of redundant coordinates in the coordinates variable attribute from bounds to all data variables (#243).
* GitHub Workflows for upstream dependencies are now examined a schedule or via `workflow_dispatch` (#243).
* `black` steps are now called `lint` for clarity/inclusiveness of other linting hooks. (#243).
* pre-commit hooks now include checks for TOML files, and for ReadTheDocs and GitHub Actions configuration files. (#243).
Expand Down
16 changes: 8 additions & 8 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@ dependencies:
- poppler >=0.67
- pyproj >=3.3.0
- requests >=2.0
- roocs-grids>=0.1.2
- roocs-grids >=0.1.2
- roocs-utils >=0.6.4,<0.7
- shapely >=1.9
- xarray >=0.21,<2023.3.0 # https://github.com/pydata/xarray/issues/7794
- xarray >=0.21 # https://github.com/pydata/xarray/issues/7794
- xesmf >=0.8.2
# Dev tools and testing
- black >=23.10.1
- bump-my-version
- flake8
- gitpython>=3.1.30
- gitpython >=3.1.30
- ipython
- isort
- jinja2>=2.11
- pre-commit>=3.0.0
- jinja2 >=2.11
- pre-commit >=3.0.0
- pytest
- pytest-cov
- pytest-loguru>=0.2.0
- tox>=4.0
- pytest-loguru >=0.2.0
- tox >=4.0
- watchdog
# Documentation
- ipykernel
- ipython
- ipython_genutils
- jupyter_client
- matplotlib
- matplotlib >=3.5.2
- nbsphinx
- pandoc
- sphinx
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies = [
"roocs-utils>=0.6.4,<0.7",
"shapely>=1.9",
# https://github.com/pydata/xarray/issues/7794
"xarray>=0.21,<2023.3.0"
"xarray>=0.21"
]

[project.optional-dependencies]
Expand Down

0 comments on commit 137be62

Please sign in to comment.