Skip to content

Commit

Permalink
chore: test on Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Sep 29, 2024
1 parent 5ee36da commit 7d091e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- {os: macos-13, python-version: '3.8'}
- {os: macos-13, python-version: '3.12'}
- {os: macos-13, python-version: '3.13'}
- {os: windows-latest, python-version: '3.8'}
- {os: windows-latest, python-version: '3.12'}
- {os: windows-latest, python-version: '3.13'}

steps:
- uses: actions/checkout@v4
Expand All @@ -51,6 +51,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install package
run: python -m pip install -e .[test]
Expand Down

0 comments on commit 7d091e0

Please sign in to comment.