Skip to content

Commit

Permalink
Fix xarray dependency lower bound (#45)
Browse files Browse the repository at this point in the history
* Fix xarray dependency lower bound

* prepare patch release
  • Loading branch information
OriolAbril committed Jan 20, 2023
1 parent 659ac13 commit bd4dfb0
Show file tree
Hide file tree
Showing 7 changed files with 181 additions and 191 deletions.
7 changes: 2 additions & 5 deletions docs/source/changelog.md
@@ -1,11 +1,8 @@
# Change Log

## v0.x.x (Unreleased)
### New features

## v0.5.1 (2023 Jan 20)
### Maintenance and fixes

### Documentation
* Fix lower cap on xarray version dependency {pull}`45`

## v0.5.0 (2023 Jan 16)
### New features
Expand Down
2 changes: 2 additions & 0 deletions docs/source/contributing/how_to.md
Expand Up @@ -61,4 +61,6 @@ on an environment that has a specific set of dependencies installed.
### Documentation
```
1. Check conda-forge. It will automatically send a PR with the updated recipe which
will need to be reviewed (and modified if dependencies were updated).

90 changes: 45 additions & 45 deletions docs/source/tutorials/linalg_tutorial.ipynb

Large diffs are not rendered by default.

69 changes: 30 additions & 39 deletions docs/source/tutorials/np_linalg_tutorial_port.ipynb

Large diffs are not rendered by default.

200 changes: 100 additions & 100 deletions docs/source/tutorials/stats_tutorial.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -29,7 +29,7 @@ dynamic = ["version"]
dependencies = [
"numpy>=1.20",
"scipy>=1.6",
"xarray>=0.16",
"xarray>=2022.09.0",
]

[tool.flit.module]
Expand Down
2 changes: 1 addition & 1 deletion src/xarray_einstats/__init__.py
Expand Up @@ -9,7 +9,7 @@

__all__ = ["einsum", "raw_einsum", "einsum_path", "matmul", "zeros_ref", "ones_ref", "empty_ref"]

__version__ = "0.6.0.dev0"
__version__ = "0.5.1"


def sort(da, dim, **kwargs):
Expand Down

0 comments on commit bd4dfb0

Please sign in to comment.