Skip to content

Commit cfd2192

Browse files
committed
Test on newer Python, skip mac/3.7
1 parent ce721e0 commit cfd2192

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
17-
os: [macOS-latest, ubuntu-latest, windows-latest]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
os: [macos-latest, ubuntu-latest, windows-latest]
18+
exclude:
19+
- os: macos-latest
20+
python-version: "3.7"
1821
steps:
1922
- name: Checkout
2023
uses: actions/checkout@v3
@@ -34,7 +37,7 @@ jobs:
3437
runs-on: ${{ matrix.os }}
3538
strategy:
3639
matrix:
37-
python-version: ["3.10"]
40+
python-version: ["3.12"]
3841
os: [ubuntu-latest]
3942
steps:
4043
- name: Checkout
@@ -49,4 +52,4 @@ jobs:
4952
run: |
5053
pip install -U .[dev]
5154
- name: Lint
52-
run: make lint
55+
run: make lint

0 commit comments

Comments
 (0)