From 8eb5cd7f2c049394ab8ab3d165a488bd06c4923a Mon Sep 17 00:00:00 2001 From: William Barnhart Date: Mon, 18 Nov 2024 22:04:48 -0500 Subject: [PATCH] Update python-package.yml to formally support Python 3.13 (#648) --- .github/workflows/python-package.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index eb857e829..dcbaef9c9 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -12,7 +12,7 @@ env: FORCE_COLOR: '1' # Make tools pretty. PIP_DISABLE_PIP_VERSION_CHECK: '1' PIP_NO_PYTHON_VERSION_WARNING: '1' - PYTHON_LATEST: '3.12' + PYTHON_LATEST: '3.13' # For re-actors/checkout-python-sdist sdist-artifact: python-package-distributions @@ -45,22 +45,13 @@ jobs: # for example if a test fails only when Cython is enabled fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] use-cython: ['true', 'false'] experimental: [false] include: - python-version: 'pypy3.9' use-cython: false experimental: true - - python-version: ~3.13.0-0 - experimental: true - use-cython: false - - python-version: 3.12 - experimental: true - use-cython: false - - python-version: 3.12 - experimental: true - use-cython: true env: USE_CYTHON: ${{ matrix.use-cython }} continue-on-error: ${{ matrix.experimental }}