Skip to content

Commit b38cbc4

Browse files
committedOct 9, 2024
Use older ubuntu to get Python 3.7
1 parent 5bc9504 commit b38cbc4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

Diff for: ‎.github/workflows/pythonpackage.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ on: [push, pull_request, workflow_dispatch]
88
jobs:
99
build:
1010

11-
runs-on: ubuntu-latest
11+
runs-on: ${{ matrix.os }}
1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
os: [ubuntu-latest]
17+
experimental: [false]
1518
include:
16-
- experimental: false
19+
- python-version: "3.7"
20+
os: ubuntu-22.04
21+
experimental: false
1722
continue-on-error: ${{ matrix.experimental }}
1823

1924
steps:

0 commit comments

Comments
 (0)