From 4433a29c87c50bdba0b6053eab339a1105707fb5 Mon Sep 17 00:00:00 2001 From: Joshua Hampton <32854748+joshua-hampton@users.noreply.github.com> Date: Mon, 27 Apr 2026 09:49:56 +0100 Subject: [PATCH 1/2] Limit cf python for py3.10 and lower --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 010e4d3..5c3a9ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ dependencies = [ "click", "pyyaml", - "cf-python != 3.19.0", + "cf-python < 3.19.0 ; python_version <= '3.10'", "netcdf4", "pandas", "requests", From aea1dadf8a8cfcffbfea4a199d56f54783d161ab Mon Sep 17 00:00:00 2001 From: Joshua Hampton <32854748+joshua-hampton@users.noreply.github.com> Date: Mon, 27 Apr 2026 09:51:52 +0100 Subject: [PATCH 2/2] Add cf-python for py3.11 and higher --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5c3a9ee..e6b8a37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,7 @@ dependencies = [ "click", "pyyaml", "cf-python < 3.19.0 ; python_version <= '3.10'", + "cf-python ; python_version >= '3.11'", "netcdf4", "pandas", "requests",