Skip to content

Commit 680702d

Browse files
committed
Test on Python 3.14 release candidate 2 and on macOS 26
1 parent f3a527c commit 680702d

File tree

4 files changed

+135
-103
lines changed

4 files changed

+135
-103
lines changed

.github/workflows/tox.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,21 @@ on:
1414
jobs:
1515
tests:
1616
strategy:
17+
fail-fast: false
1718
matrix:
1819
os: [ macos-latest ]
19-
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
20+
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
2021
include:
2122
- os: macos-26
2223
python-version: 3.x
2324
runs-on: ${{ matrix.os }}
2425
steps:
25-
- uses: actions/checkout@v4
26-
- name: Set up Python V${{ matrix.python-version }}
27-
uses: actions/setup-python@v5
26+
- uses: actions/checkout@v5
27+
- name: Set up Python v${{ matrix.python-version }}
28+
uses: actions/setup-python@v6
2829
with:
2930
python-version: ${{ matrix.python-version }}
31+
allow-prereleases: true
3032
- name: Install tox-gh-actions
3133
run: |
3234
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)