From f3876fde179a4e5ada220d9e52208bb97b96d7eb Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 9 Sep 2024 17:38:02 -0500 Subject: [PATCH] Python 3.13 support (#1002) --- .github/workflows/ci-cd.yml | 12 +++--------- CHANGES/1002.feature.rst | 1 + setup.cfg | 1 + 3 files changed, 5 insertions(+), 9 deletions(-) create mode 100644 CHANGES/1002.feature.rst diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index bcc289c14..c5ad4ff73 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/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`. 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