Skip to content

Commit 1d242e7

Browse files
committed
Remove python 3.9 checks from CI tests
Removed because of successful tool migration to python 3.12.
1 parent c5ac22c commit 1d242e7

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

.github/workflows/test-functional-microshift.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ env:
1313

1414
jobs:
1515
build:
16-
strategy:
17-
matrix:
18-
python-version: [3.9, 3.12]
1916
runs-on: ubuntu-22.04
2017

2118
steps:
@@ -24,7 +21,7 @@ jobs:
2421
- name: Set up Python
2522
uses: actions/setup-python@v5
2623
with:
27-
python-version: ${{ matrix.python-version }}
24+
python-version: 3.12
2825

2926
- name: Fix for "grup-efi-amd64-signed" missing
3027
run: |

.github/workflows/test-functional-microstack.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88

99
jobs:
1010
build:
11-
strategy:
12-
matrix:
13-
python-version: [3.9, 3.12]
1411
runs-on: ubuntu-22.04
1512

1613
steps:
@@ -19,7 +16,7 @@ jobs:
1916
- name: Set up Python
2017
uses: actions/setup-python@v5
2118
with:
22-
python-version: ${{ matrix.python-version }}
19+
python-version: 3.12
2320

2421
- name: Install ColdFront and plugin
2522
run: |

.github/workflows/test-unit.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88

99
jobs:
1010
build:
11-
strategy:
12-
matrix:
13-
python-version: [3.9, 3.12]
1411
runs-on: ubuntu-22.04
1512

1613
steps:
@@ -19,7 +16,7 @@ jobs:
1916
- name: Set up Python
2017
uses: actions/setup-python@v5
2118
with:
22-
python-version: ${{ matrix.python-version }}
19+
python-version: 3.12
2320

2421
- name: Install ColdFront and plugin
2522
run: |

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers =
1818
package_dir =
1919
= src
2020
packages = find:
21-
python_requires = >=3.8
21+
python_requires = >=3.11
2222
install_requires =
2323
nerc_rates @ git+https://github.com/CCI-MOC/nerc-rates@74eb4a7
2424
boto3

0 commit comments

Comments
 (0)