From e6d450483bee95be1f9df9d9c8221d9cd34b3962 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 13:32:59 +0000 Subject: [PATCH 1/4] Bump codecov/codecov-action from 6 to 7 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 6 to 7. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 15d2118..9bdb60e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -55,7 +55,7 @@ jobs: - name: Report Coverage (codecov) if: matrix.os == 'ubuntu-latest' - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 1462325482d3095a71105c8f05a9971f3b3af58e Mon Sep 17 00:00:00 2001 From: Xavier Garrido Date: Mon, 8 Jun 2026 14:20:22 +0000 Subject: [PATCH 2/4] Fix missing spinned windows --- pspy/tests/test_pspy_namaster.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pspy/tests/test_pspy_namaster.py b/pspy/tests/test_pspy_namaster.py index 607a23c..9de0d85 100644 --- a/pspy/tests/test_pspy_namaster.py +++ b/pspy/tests/test_pspy_namaster.py @@ -84,8 +84,11 @@ def run_pspy(pure=False): mbb_inv, Bbl = so_mcm.mcm_and_bbl_spin0and2( window, binning_file, lmax=lmax, type="Cl", niter=niter, pure=pure ) - get_alms = sph_tools.get_pure_alms if pure else sph_tools.get_alms - alms = get_alms(cmb, window, niter=niter, lmax=lmax) + if pure: + spinned_windows = so_window.get_spinned_windows(window, lmax, niter) + alms = sph_tools.get_pure_alms(cmb, window, spinned_windows, niter=niter, lmax=lmax) + else: + alms = sph_tools.get_alms(cmb, window, niter=niter, lmax=lmax) ell, ps = so_spectra.get_spectra(alms, spectra=spectra) lb, Clb = so_spectra.bin_spectra( ell, ps, binning_file, lmax, type="Cl", mbb_inv=mbb_inv, spectra=spectra From 624ffdb0c921eec6eb796d537e590bf95df9f901 Mon Sep 17 00:00:00 2001 From: Xavier Garrido Date: Mon, 8 Jun 2026 14:26:52 +0000 Subject: [PATCH 3/4] Fix tuple --- pspy/tests/test_pspy_namaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pspy/tests/test_pspy_namaster.py b/pspy/tests/test_pspy_namaster.py index 9de0d85..ab1b0a8 100644 --- a/pspy/tests/test_pspy_namaster.py +++ b/pspy/tests/test_pspy_namaster.py @@ -85,7 +85,7 @@ def run_pspy(pure=False): window, binning_file, lmax=lmax, type="Cl", niter=niter, pure=pure ) if pure: - spinned_windows = so_window.get_spinned_windows(window, lmax, niter) + spinned_windows = so_window.get_spinned_windows(window[0], lmax, niter) alms = sph_tools.get_pure_alms(cmb, window, spinned_windows, niter=niter, lmax=lmax) else: alms = sph_tools.get_alms(cmb, window, niter=niter, lmax=lmax) From b708277b6ca3e26557ac2a5379532816985d3083 Mon Sep 17 00:00:00 2001 From: Xavier Garrido Date: Mon, 8 Jun 2026 14:34:05 +0000 Subject: [PATCH 4/4] Fix warning due to latex code in python string --- pspy/sph_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pspy/sph_tools.py b/pspy/sph_tools.py index 2a95845..b076040 100644 --- a/pspy/sph_tools.py +++ b/pspy/sph_tools.py @@ -187,7 +187,7 @@ def show_alm_triangle( xlims=None, ylims=None, title="Triangle", fig_file=None): - """ + r""" This routine is from the spt3g data release https://pole.uchicago.edu/public/data/quan26/index.html Parameters