Skip to content

Commit

Permalink
Update CI Python versions
Browse files Browse the repository at this point in the history
Python 3.8 is EOL, and Python 3.13 was recently released.
  • Loading branch information
calcmogul committed Oct 16, 2024
1 parent 34e0d18 commit 8f9fff9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
fail-fast: false
matrix:
os: [macos-14, windows-2022, ubuntu-22.04]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
exclude:
- os: macos-14
python-version: '3.8'
- os: macos-14
python-version: '3.9'
- os: windows-2022
python-version: '3.13'
name: Test - ${{ matrix.os }}, ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'

- name: Install Python dependencies
run: pip install build
Expand Down

0 comments on commit 8f9fff9

Please sign in to comment.