From d6c65c83147496ec81d94a4a2596fced301cd57a Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 16 Mar 2026 11:50:38 +0100 Subject: [PATCH 1/2] MAINT: Set python_min in recipe context --- .github/ci/recipe.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/ci/recipe.yaml b/.github/ci/recipe.yaml index 11a2d14b8..33a3a4d48 100644 --- a/.github/ci/recipe.yaml +++ b/.github/ci/recipe.yaml @@ -5,6 +5,7 @@ context: name: parcels version: ${{ env.get('PARCELS_ALPHA_VERSION', default='0.1.0dev') }} + python_min: "3.11" package: name: ${{ name|lower }} @@ -21,14 +22,14 @@ build: requirements: host: - - python 3.11.* + - python {{python_min}}.* - pip - setuptools - setuptools_scm - setuptools_scm_git_archive - wheel run: - - python >=3.11 + - python >={{ python_min }} - cftime >=1.6.3 - dask >=2024.5.1 - netcdf4 >=1.7.2 From cff14361e20f6067d7b099cf50ac08148027903a Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 16 Mar 2026 15:18:19 +0100 Subject: [PATCH 2/2] MAINT: Add holoviews lower pin --- .github/ci/recipe.yaml | 1 + pixi.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/ci/recipe.yaml b/.github/ci/recipe.yaml index 33a3a4d48..bea38a26c 100644 --- a/.github/ci/recipe.yaml +++ b/.github/ci/recipe.yaml @@ -41,6 +41,7 @@ requirements: - zarr >=2.15.0,!=2.18.0,<3 - uxarray>=2025.3.0 - pyogrio # needed for geopandas (uxarray -> geoviews -> geopandas -> pyogrio, but for some reason conda doesn't pick it up automatically) + - holoviews >= 1.22.0 # https://github.com/prefix-dev/rattler-build/issues/2326 - pooch >=1.8.0 tests: diff --git a/pixi.toml b/pixi.toml index 65d8bdeca..1e24524a9 100644 --- a/pixi.toml +++ b/pixi.toml @@ -23,6 +23,7 @@ netcdf4 = ">=1.6.0" numpy = ">=2.1.0" tqdm = ">=4.50.0" xarray = ">=2024.5.0" +holoviews = ">=1.22.0" # https://github.com/prefix-dev/rattler-build/issues/2326 uxarray = ">=2025.3.0" dask = ">=2024.5.1" zarr = ">=2.15.0,!=2.18.0,<3"