Skip to content

Commit d7ed2e7

Browse files
committed
[build] Disable Python 3.7 on Ubuntu 24
1 parent 09f2b64 commit d7ed2e7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
strategy:
2828
matrix:
29+
# TODO: Bump ubuntu 20 to 22 when past EOL date.
2930
os: [macos-13, macos-14, ubuntu-20.04, ubuntu-latest, windows-latest]
3031
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3132
exclude:
3233
# macos-14 builders use M1 (ARM64) which does not have a Python 3.7 package available.
3334
- os: macos-14
3435
python-version: "3.7"
36+
# ubuntu 24+ does not have Python 3.7
37+
- os: ubuntu-latest
38+
python-version: "3.7"
3539

3640
env:
3741
# Version is extracted below and used to find correct package install path.

0 commit comments

Comments
 (0)