Skip to content

Commit 0db4374

Browse files
committed
update setup.py and readme
1 parent b356ddc commit 0db4374

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

doc/release_notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Upcoming Release
66

77
* Using the python `sum()` function over `ScalarVariable`s and `ScalarLinearExpression`s is now supported.
88
* Returning None type in `from_rule` assignment is now supported.
9+
* Python 3.11 is now supported
10+
* Xarray versions higher and lower `v2022.06.` are now supported.
911

1012
Version 0.0.14
1113
--------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
license="GPLv3",
2626
packages=find_packages(exclude=["doc", "test"]),
2727
include_package_data=True,
28-
python_requires="~=3.7",
28+
python_requires="~=3.8",
2929
install_requires=[
3030
"numpy",
3131
"scipy",
3232
"bottleneck",
3333
"toolz",
3434
"numexpr",
35-
"xarray<=2022.03.",
35+
"xarray!=2022.06.",
3636
"dask>=0.18.0",
3737
"tqdm",
3838
"deprecation",

0 commit comments

Comments
 (0)