Skip to content

Commit 8c4264b

Browse files
[Internal] Stop testing Python 3.7 on Ubuntu (#858)
## What changes are proposed in this pull request? Python 3.7.x is essentially not supported; - It has been removed from Windows 2019, Windows 2022, Ubuntu 20 and Ubuntu 22 images ([ref](actions/runner-images#10893)). - `unbuntu-latest` now points toward 24.04 which does not support Python 3.7.x ([ref](actions/runner-images#11332)) This PR updates our Ubuntu workflows to avoid this version. ## How is this tested? N/A
1 parent cbae014 commit 8c4264b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
pyVersion: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
15+
pyVersion: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
1616
with:
1717
os: ubuntu-latest
1818
pyVersion: ${{ matrix.pyVersion }}

0 commit comments

Comments
 (0)