Skip to content

Commit f7701ac

Browse files
committed
replaced python 3.7 version, it is no longer supported by ubuntu 24.04.
The version '3.7' with architecture 'x64' was not found for Ubuntu 24.04. The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json fix
1 parent 2a23e76 commit f7701ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/e2e-master.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9]
16+
python-version: ["3.8", "3.9", "3.10"]
1717
steps:
1818
- uses: actions/checkout@v4
1919
with:

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.7", "3.8", "3.10", "3.11"]
10+
python-version: ["3.8", "3.10", "3.11", "3.12"]
1111
include:
1212
- python-version: "3.9"
1313
use_coverage: 'coverage'

0 commit comments

Comments
 (0)