Skip to content

Commit 0ab252e

Browse files
authored
Remove dependency upper bound version constraints
The upper-bound version constraints cause issues with Python distributions and Python package manager dependency resolvers. Remove these constraints. We could add a constraint if there is a known issue it intends to address.
1 parent bd71550 commit 0ab252e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ classifiers = [
2424
]
2525
keywords = ["xarray", "dataclass", "dataarray", "dataset", "typing"]
2626

27-
requires-python = ">=3.9, <3.14"
27+
requires-python = ">=3.9"
2828
dependencies = [
29-
"numpy >=2.0.0,<3",
30-
"xarray >=2022.3,<2026",
31-
"typing-extensions>=4.10.0,<5"]
29+
"numpy >=2.0.0",
30+
"xarray >=2022.3",
31+
"typing-extensions>=4.10.0"]
3232

3333
[project.urls]
3434
Homepage = "https://github.com/xarray-contrib/xarray-dataclasses/"

0 commit comments

Comments
 (0)