Skip to content

Commit

Permalink
Test on Python 3.13 development releases (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Jul 4, 2024
1 parent 328e3b0 commit c0aa1b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]

steps:
- uses: actions/checkout@v4
Expand All @@ -29,6 +29,11 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: "pip"

# FIXME: remove onve cffi 1.17 is released
- name: Install pre-releases for 3.13-dev
if: ${{ matrix.python-version }} == '3.13-dev'
run: pip install cffi==1.17.0rc1

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit c0aa1b8

Please sign in to comment.