Skip to content

Commit 87ca6c8

Browse files
authored
Remove Python 3.7 from GitHub Actions
In #717 the runner images were upgraded from Ubuntu `20` to Ubuntu `24` (implicit). [Ubuntu `24` does not have an available Python `3.7` installation](actions/setup-python#962), so the [actions fail](https://github.com/hazelcast/hazelcast-python-client/actions/runs/13270208556). Changes: - removed Python `3.7` from GitHub Actions - upgraded `setup-python` action to latest (while investigating)
1 parent 72b2ff9 commit 87ca6c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/coverage_runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
name: Run tests with Python ${{ matrix.python-version }} on ${{ matrix.os }}
3838
strategy:
3939
matrix:
40-
python-version: [ '3.7', '3.12' ]
40+
python-version: [ '3.8', '3.12' ]
4141
os: [ ubuntu-latest, windows-latest ]
4242
fail-fast: false
4343

4444
steps:
4545
- name: Setup Python
46-
uses: actions/setup-python@v2
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949

.github/workflows/nightly_runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
name: Run tests with Python ${{ matrix.python-version }} on ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
1313
os: [ ubuntu-latest, windows-latest ]
1414
exclude:
1515
- os: windows-latest
1616
python-version: pypy-3.9
1717
fail-fast: false
1818
steps:
1919
- name: Setup Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install JDK

0 commit comments

Comments
 (0)