Skip to content

Commit b261158

Browse files
committed
Fix
1 parent fe3c598 commit b261158

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/main.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,17 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26+
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
27+
python-version: ["3.10", "3.11", "3.12"]
2628
include:
2729
- os: ubuntu-24.04
28-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
29-
- os: macos-14
30-
python-version: ["3.10", "3.11", "3.12"]
31-
- os: windows-2022
32-
python-version: ["3.10", "3.11", "3.12"]
30+
python-version: 3.7
31+
- os: ubuntu-24.04
32+
python-version: 3.8
33+
- os: ubuntu-24.04
34+
python-version: 3.9
35+
- os: ubuntu-24.04
36+
python-version: 3.13
3337
steps:
3438
- uses: actions/checkout@v4
3539
- uses: actions/setup-python@v5

.github/workflows/test-latest.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
include:
17-
- os: ubuntu-latest
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
19-
- os: macos-latest
20-
python-version: ["3.10", "3.11", "3.12"]
21-
- os: windows-latest
22-
python-version: ["3.10", "3.11", "3.12"]
16+
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2318
steps:
2419
- uses: actions/checkout@v4
2520
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)