Skip to content

Commit

Permalink
Update python-package.yml to formally support Python 3.13 (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha authored Nov 19, 2024
1 parent 378aede commit 8eb5cd7
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 8eb5cd7

Please sign in to comment.