Skip to content

Commit bd4dfb0

Browse files
authored
Fix xarray dependency lower bound (#45)
* Fix xarray dependency lower bound * prepare patch release
1 parent 659ac13 commit bd4dfb0

File tree

7 files changed

+181
-191
lines changed

7 files changed

+181
-191
lines changed

docs/source/changelog.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Change Log
22

3-
## v0.x.x (Unreleased)
4-
### New features
5-
3+
## v0.5.1 (2023 Jan 20)
64
### Maintenance and fixes
7-
8-
### Documentation
5+
* Fix lower cap on xarray version dependency {pull}`45`
96

107
## v0.5.0 (2023 Jan 16)
118
### New features

docs/source/contributing/how_to.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,6 @@ on an environment that has a specific set of dependencies installed.
6161
6262
### Documentation
6363
```
64+
1. Check conda-forge. It will automatically send a PR with the updated recipe which
65+
will need to be reviewed (and modified if dependencies were updated).
6466

docs/source/tutorials/linalg_tutorial.ipynb

Lines changed: 45 additions & 45 deletions
Large diffs are not rendered by default.

docs/source/tutorials/np_linalg_tutorial_port.ipynb

Lines changed: 30 additions & 39 deletions
Large diffs are not rendered by default.

docs/source/tutorials/stats_tutorial.ipynb

Lines changed: 100 additions & 100 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dynamic = ["version"]
2929
dependencies = [
3030
"numpy>=1.20",
3131
"scipy>=1.6",
32-
"xarray>=0.16",
32+
"xarray>=2022.09.0",
3333
]
3434

3535
[tool.flit.module]

src/xarray_einstats/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

12-
__version__ = "0.6.0.dev0"
12+
__version__ = "0.5.1"
1313

1414

1515
def sort(da, dim, **kwargs):

0 commit comments

Comments
 (0)