From 35745bdd0ee8e2db0ce17633cca4e41896b06002 Mon Sep 17 00:00:00 2001 From: Cadair <1391051+Cadair@users.noreply.github.com> Date: Mon, 6 Jul 2026 08:34:50 +0000 Subject: [PATCH 1/2] Automatic package template update --- .cruft.json | 4 ++-- .readthedocs.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.cruft.json b/.cruft.json index c766158f9..4f5e0e940 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/sunpy/package-template", - "commit": "0c0f34c2ccd536ba8320fcda29c4d8e0f8f9adc5", + "commit": "fb26c9794c872939b7e72bc7f30b943628384a8e", "checkout": null, "context": { "cookiecutter": { @@ -33,7 +33,7 @@ ".github/workflows/sub_package_update.yml" ], "_template": "https://github.com/sunpy/package-template", - "_commit": "0c0f34c2ccd536ba8320fcda29c4d8e0f8f9adc5" + "_commit": "fb26c9794c872939b7e72bc7f30b943628384a8e" } }, "directory": null diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3d9312dad..4d4ed0fba 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,7 +3,7 @@ version: 2 build: os: ubuntu-lts-latest tools: - python: "mambaforge-latest" + python: "miniforge3-latest" jobs: post_checkout: - git fetch --unshallow || true From 2d5a2619aed2a16e1e993527022cc401f4ee454a Mon Sep 17 00:00:00 2001 From: Shane Maloney Date: Thu, 23 Jul 2026 14:42:54 +0100 Subject: [PATCH 2/2] Update test --- ndcube/wcs/wrappers/tests/test_compound_wcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ndcube/wcs/wrappers/tests/test_compound_wcs.py b/ndcube/wcs/wrappers/tests/test_compound_wcs.py index 7814fbde0..f1b2ba649 100644 --- a/ndcube/wcs/wrappers/tests/test_compound_wcs.py +++ b/ndcube/wcs/wrappers/tests/test_compound_wcs.py @@ -52,8 +52,8 @@ def celestial_wcs(request): @pytest.mark.parametrize(('spectral_wcs', 'celestial_wcs'), - product(['spectral_1d_ape14_wcs', 'spectral_1d_fitswcs'], - ['celestial_2d_ape14_wcs', 'celestial_2d_fitswcs']), + list(product(['spectral_1d_ape14_wcs', 'spectral_1d_fitswcs'], + ['celestial_2d_ape14_wcs', 'celestial_2d_fitswcs'])), indirect=True) def test_celestial_spectral_ape14(spectral_wcs, celestial_wcs):