From 0ab252e9065fafe9c3c51b8ab0073139a6a0fd23 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 29 Jul 2025 13:03:08 -0400 Subject: [PATCH] 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. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e3c436e..27596a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,11 +24,11 @@ classifiers = [ ] keywords = ["xarray", "dataclass", "dataarray", "dataset", "typing"] -requires-python = ">=3.9, <3.14" +requires-python = ">=3.9" dependencies = [ - "numpy >=2.0.0,<3", - "xarray >=2022.3,<2026", - "typing-extensions>=4.10.0,<5"] + "numpy >=2.0.0", + "xarray >=2022.3", + "typing-extensions>=4.10.0"] [project.urls] Homepage = "https://github.com/xarray-contrib/xarray-dataclasses/"