Skip to content

Commit 2b428a3

Browse files
committed
Merge branch 'main' of github.com:esmvalgroup/esmvalcore into configure-dask-distributed
2 parents 80f5c62 + 3d6ed66 commit 2b428a3

32 files changed

+325
-308
lines changed

.github/workflows/install-from-conda.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ name: Install from conda-forge
1515

1616
# runs on a push on main and at the end of every day
1717
on:
18-
# triggering on push without branch name will run tests everytime
18+
# triggering on push without branch name will run tests every time
1919
# there is a push on any branch
2020
# turn it on only if needed
2121
push:
2222
branches:
23-
- main
23+
- main
2424
# run the test only if the PR is to main
2525
# turn it on if required
2626
# pull_request:
@@ -35,9 +35,9 @@ jobs:
3535
strategy:
3636
matrix:
3737
# TODO add "3.11" once we have the package built
38-
python-version: ["3.8", "3.9", "3.10"]
38+
python-version: ["3.9", "3.10"]
3939
# fail-fast set to False allows all other tests
40-
# in the worflow to run regardless of any fail
40+
# in the workflow to run regardless of any fail
4141
fail-fast: false
4242
name: Linux Python ${{ matrix.python-version }}
4343
steps:
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: "macos-latest"
7676
strategy:
7777
matrix:
78-
python-version: ["3.8", "3.9", "3.10"]
78+
python-version: ["3.9", "3.10"]
7979
fail-fast: false
8080
name: OSX Python ${{ matrix.python-version }}
8181
steps:

.github/workflows/install-from-condalock-file.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Conda-lock Install
1010
on:
1111
push:
1212
branches:
13-
- main
13+
- main
1414
# run the test only if the PR is to main
1515
# turn it on if required
1616
#pull_request:
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: "ubuntu-latest"
2525
strategy:
2626
matrix:
27-
python-version: ["3.8", "3.9", "3.10", "3.11"]
27+
python-version: ["3.9", "3.10", "3.11"]
2828
fail-fast: false
2929
name: Linux Python ${{ matrix.python-version }}
3030
steps:

.github/workflows/install-from-pypi.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
# turn it on only if needed
2121
push:
2222
branches:
23-
- main
23+
- main
2424
# run the test only if the PR is to main
2525
# turn it on if required
2626
#pull_request:
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
# TODO add "3.11" once we have the package built
38-
python-version: ["3.8", "3.9", "3.10"]
38+
python-version: ["3.9", "3.10"]
3939
# fail-fast set to False allows all other tests
4040
# in the workflow to run regardless of any fail
4141
fail-fast: false
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: "macos-latest"
7878
strategy:
7979
matrix:
80-
python-version: ["3.8", "3.9", "3.10"]
80+
python-version: ["3.9", "3.10"]
8181
fail-fast: false
8282
name: OSX Python ${{ matrix.python-version }}
8383
steps:
@@ -103,8 +103,8 @@ jobs:
103103
run: pip install esmvalcore 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/install.txt
104104
- name: Verify installation
105105
shell: bash -l {0}
106-
run: |
107-
esmvaltool --help
106+
run: |
107+
esmvaltool --help
108108
esmvaltool version 2>&1 | tee pip_install_osx_artifacts_python_${{ matrix.python-version }}/version.txt
109109
- name: Upload artifacts
110110
if: ${{ always() }} # upload artifacts even if fail

.github/workflows/install-from-source.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ name: Install from Source
1313

1414
# runs on a push on main and at the end of every day
1515
on:
16-
# triggering on push without branch name will run tests everytime
16+
# triggering on push without branch name will run tests every time
1717
# there is a push on any branch
1818
# turn it on only if needed
1919
push:
2020
branches:
21-
- main
21+
- main
2222
# run the test only if the PR is to main
2323
# turn it on if required
2424
#pull_request:
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: "ubuntu-latest"
3333
strategy:
3434
matrix:
35-
python-version: ["3.8", "3.9", "3.10", "3.11"]
35+
python-version: ["3.9", "3.10", "3.11"]
3636
fail-fast: false
3737
name: Linux Python ${{ matrix.python-version }}
3838
steps:
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: "macos-latest"
7474
strategy:
7575
matrix:
76-
python-version: ["3.8", "3.9", "3.10", "3.11"]
76+
python-version: ["3.9", "3.10", "3.11"]
7777
fail-fast: false
7878
name: OSX Python ${{ matrix.python-version }}
7979
steps:

.github/workflows/run-tests-comment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: "ubuntu-latest"
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10"]
12+
python-version: ["3.9", "3.10"]
1313
fail-fast: false
1414
name: Linux Python ${{ matrix.python-version }}
1515
if: ${{ github.event.issue.pull_request && github.event.comment.body == '@runGAtests' }}
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: "macos-latest"
4949
strategy:
5050
matrix:
51-
python-version: ["3.8", "3.9", "3.10"]
51+
python-version: ["3.9", "3.10"]
5252
fail-fast: false
5353
name: OSX Python ${{ matrix.python-version }}
5454
if: ${{ github.event.issue.pull_request && github.event.comment.body == '@runGAtests' }}

.github/workflows/run-tests-monitor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: "ubuntu-latest"
1818
strategy:
1919
matrix:
20-
python-version: ["3.8", "3.9", "3.10", "3.11"]
20+
python-version: ["3.9", "3.10", "3.11"]
2121
fail-fast: false
2222
name: Linux Python ${{ matrix.python-version }}
2323
steps:
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: "macos-latest"
5858
strategy:
5959
matrix:
60-
python-version: ["3.8", "3.9", "3.10", "3.11"]
60+
python-version: ["3.9", "3.10", "3.11"]
6161
fail-fast: false
6262
name: OSX Python ${{ matrix.python-version }}
6363
steps:

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: "ubuntu-latest"
3535
strategy:
3636
matrix:
37-
python-version: ["3.8", "3.9", "3.10", "3.11"]
37+
python-version: ["3.9", "3.10", "3.11"]
3838
fail-fast: false
3939
name: Linux Python ${{ matrix.python-version }}
4040
steps:
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: "macos-latest"
7373
strategy:
7474
matrix:
75-
python-version: ["3.8", "3.9", "3.10", "3.11"]
75+
python-version: ["3.9", "3.10", "3.11"]
7676
fail-fast: false
7777
name: OSX Python ${{ matrix.python-version }}
7878
steps:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![Github Actions Test](https://github.com/ESMValGroup/ESMValCore/actions/workflows/run-tests.yml/badge.svg)](https://github.com/ESMValGroup/ESMValCore/actions/workflows/run-tests.yml)
1212
[![Github Actions Dashboard](https://api.meercode.io/badge/ESMValGroup/ESMValCore?type=ci-success-rate&branch=main&lastDay=14)](https://meercode.io)
1313

14-
![esmvaltoollogo](https://github.com/ESMValGroup/ESMValCore/blob/main/doc/figures/ESMValTool-logo-2.png)
14+
![esmvaltoollogo](https://raw.githubusercontent.com/ESMValGroup/ESMValCore/main/doc/figures/ESMValTool-logo-2.png)
1515

1616
ESMValCore: core functionalities for the ESMValTool, a community diagnostic
1717
and performance metrics tool for routine evaluation of Earth System Models

0 commit comments

Comments
 (0)