Skip to content

Commit 5506e35

Browse files
authored
#234 Merge pull request from astropenguin/astropenguin/issue233
Fix project dependencies
2 parents 4d18ece + dd87449 commit 5506e35

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below."
33

44
title: "xarray-dataclasses"
55
abstract: "xarray data creation by data classes"
6-
version: 1.9.0
6+
version: 1.9.1
77
date-released: 2024-12-09
88
license: "MIT"
99
doi: "10.5281/zenodo.4624819"

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xarray-dataclasses"
3-
version = "1.9.0"
3+
version = "1.9.1"
44
description = "xarray data creation by data classes"
55
authors = ["Akio Taniguchi <[email protected]>"]
66
keywords = ["xarray", "dataclass", "dataarray", "dataset", "typing"]
@@ -14,7 +14,7 @@ documentation = "https://astropenguin.github.io/xarray-dataclasses/"
1414
python = ">=3.8, <3.14"
1515
numpy = [
1616
{ version = ">=1.22, <1.25", python = ">=3.8, <3.9" },
17-
{ version = ">=1.22", python = ">=3.9, <3.14" },
17+
{ version = ">=1.22, <3.0", python = ">=3.9, <3.14" },
1818
]
1919
typing-extensions = "^4.0"
2020
xarray = [

xarray_dataclasses/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"dataoptions",
1818
"typing",
1919
]
20-
__version__ = "1.9.0"
20+
__version__ = "1.9.1"
2121

2222

2323
# submodules

0 commit comments

Comments
 (0)