From 8287d1796521db22f8124566d1028b4a1abf79d9 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 8 Oct 2024 08:28:16 -0400 Subject: [PATCH 1/3] support python 3.13 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b2ab43d..8f6d9e6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,10 +62,11 @@ jobs: cache-key: crds-${{ needs.data.outputs.crds_context }} envs: | - linux: py310-xdist - - macos: py311-xdist - - linux: py311-cov-xdist - coverage: codecov + - linux: py311-xdist - linux: py312-xdist + - linux: py313-cov-xdist + coverage: codecov + - macos: py311-xdist test_downstream: uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0 needs: [ data ] From 3fc764bc09a144a58cc29d85c63c6988ff6dc44a Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 8 Oct 2024 08:43:42 -0400 Subject: [PATCH 2/3] add changelog fragment --- changes/333.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/333.feature.rst diff --git a/changes/333.feature.rst b/changes/333.feature.rst new file mode 100644 index 00000000..09dfd8af --- /dev/null +++ b/changes/333.feature.rst @@ -0,0 +1 @@ +Add python 3.13 support. From 500678c18f222a479287b5691f5cc2e2a641c581 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 8 Oct 2024 14:33:18 -0400 Subject: [PATCH 3/3] restore py311-cov-xdist --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f6d9e6a..52bf3783 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,11 +62,11 @@ jobs: cache-key: crds-${{ needs.data.outputs.crds_context }} envs: | - linux: py310-xdist - - linux: py311-xdist - - linux: py312-xdist - - linux: py313-cov-xdist - coverage: codecov - macos: py311-xdist + - linux: py311-cov-xdist + coverage: codecov + - linux: py312-xdist + - linux: py313-xdist test_downstream: uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0 needs: [ data ]