Skip to content

Commit

Permalink
TST: test Python 3.13 both GIL and free-threading flavors
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed May 15, 2024
1 parent 6b85831 commit 020e97f
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/bleeding_edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,28 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20

strategy:
matrix:
python-version:
- '3.13'
free-threading:
- false
- true

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
- uses: actions/setup-python@v5
if: !matrix.free-threading
with:
python-version: ${{ matrix.python-version }}
- uses: deadsnakes/[email protected]
if: matrix.free-threading
with:
python-version: 3.12-dev
python-version: ${{ matrix.python-version }}
nogil: true

- name: Install dependencies
run: |
Expand Down

0 comments on commit 020e97f

Please sign in to comment.