Skip to content

Commit 19e3064

Browse files
committed
Add py37 and py38 support back in
1 parent 1ab1958 commit 19e3064

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/conformance.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,16 @@ permissions: read-all
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
1413
strategy:
1514
matrix:
1615
python: ['3.9', '3.10', '3.11', '3.12']
16+
platform: [ubuntu-latest]
17+
include:
18+
- platform: ubuntu-22.04
19+
python: '3.8'
20+
- platform: ubuntu-22.04
21+
python: '3.7'
22+
runs-on: ${{ matrix.platform }}
1723
steps:
1824
- name: Harden Runner
1925
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1

.github/workflows/unit.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,32 @@ jobs:
1111
test:
1212
strategy:
1313
matrix:
14-
python: ['3.9', '3.10', '3.11', '3.12']
14+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
1515
platform: [ubuntu-latest, macos-latest, windows-latest]
1616
# Python <= 3.9 is not available on macos-14
1717
# Workaround for https://github.com/actions/setup-python/issues/696
1818
exclude:
1919
- platform: macos-latest
2020
python: '3.9'
21+
- platform: macos-latest
22+
python: '3.8'
23+
- platform: macos-latest
24+
python: '3.7'
25+
- platform: ubuntu-latest
26+
python: '3.8'
27+
- platform: ubuntu-latest
28+
python: '3.7'
2129
include:
2230
- platform: macos-latest
2331
python: '3.9'
32+
- platform: macos-13
33+
python: '3.8'
34+
- platform: macos-13
35+
python: '3.7'
36+
- platform: ubuntu-22.04
37+
python: '3.8'
38+
- platform: ubuntu-22.04
39+
python: '3.7'
2440
runs-on: ${{ matrix.platform }}
2541
steps:
2642
- name: Harden Runner

0 commit comments

Comments
 (0)