From 30f13d30960143828d08a24288e3c3b8b866d9b3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 9 Sep 2024 16:44:14 -0500 Subject: [PATCH 1/3] Python 3.13 support --- .github/workflows/ci-cd.yml | 12 +++--------- setup.cfg | 1 + 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 8d642a8fe..14b37308b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -150,11 +150,10 @@ jobs: strategy: matrix: pyver: - - 3.13-dev + - 3.13 - 3.12 - 3.11 - - >- - 3.10 + - 3.10 - 3.9 - 3.8 no-extensions: ['', 'Y'] @@ -199,12 +198,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.pyver }} - allow-prereleases: >- - ${{ - endsWith(matrix.pyver, '-dev') - && true - || false - }} + allow-prereleases: true - name: Get pip cache dir id: pip-cache run: | diff --git a/setup.cfg b/setup.cfg index 60d49601a..c3b7cab5b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,6 +39,7 @@ classifiers = Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] python_requires = >= 3.8 From 24e3f38d32f95ad96ebb975110cc4577b323c839 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 9 Sep 2024 16:44:57 -0500 Subject: [PATCH 2/3] feature --- CHANGES/1002.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 CHANGES/1002.feature.rst diff --git a/CHANGES/1002.feature.rst b/CHANGES/1002.feature.rst new file mode 100644 index 000000000..3bc44d381 --- /dev/null +++ b/CHANGES/1002.feature.rst @@ -0,0 +1 @@ +Added support for Python 3.13 -- by :user:`bdraco`. From bc700a2de49c41d4921b3dfae18fc0557bca808b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 9 Sep 2024 17:17:40 -0500 Subject: [PATCH 3/3] Update .github/workflows/ci-cd.yml --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 14b37308b..2652e5f4a 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -153,7 +153,7 @@ jobs: - 3.13 - 3.12 - 3.11 - - 3.10 + - "3.10" - 3.9 - 3.8 no-extensions: ['', 'Y']