From c839f8ca273f0b817ea196b4da8a1d1a2615f588 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 30 Jun 2025 21:05:56 +0100 Subject: [PATCH] gnu: python-scitools-iris: Relax upper limit for dask version. * gnu/packages/geo.scm (python-scitools-iris) [arguments] : Skip one more failing test. : Add 'relax-requirements. Change-Id: I5a64b019cf4db615b757f30d3f8e522c7ce5d2cc --- gnu/packages/geo.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 655cfbaf13..49fe76c99f 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2498,6 +2498,7 @@ from multiple records.") "test_coord_transposed" "test_coordinates_pass_0" "test_cube_transposed" + "test_cube_with_deferred_unit_conversion" "test_data_pass_0" "test_destructor" "test_formula_terms_pass_0" @@ -2559,6 +2560,11 @@ from multiple records.") " and not ")) #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "requirements/pypi-core.txt" + ;; dask[array]>=2022.9.0,!=2024.8.0, <2024.9 + ((", <2024.9") "")))) ;; GeoVista is not packaged yet, "--ignore" option did not work to ;; skip test files. (add-after 'unpack 'delete-failing-test-files @@ -2585,8 +2591,8 @@ from multiple records.") python-distributed python-filelock python-imagehash - python-pytest-xdist python-pytest + python-pytest-xdist python-setuptools python-setuptools-scm python-wheel))