Skip to content

Commit b5a0cc6

Browse files
Bump to v2.8.0 (#634)
1 parent fd9e918 commit b5a0cc6

File tree

7 files changed

+19
-16
lines changed

7 files changed

+19
-16
lines changed

.github/workflows/build_workflow.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ jobs:
2626

2727
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
2828
name: Checkout Code Repository
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
32-
name: Set up Python 3.9
33-
uses: actions/setup-python@v2
32+
name: Set up Python 3.10
33+
uses: actions/setup-python@v3
3434
with:
35-
python-version: 3.9
35+
python-version: "3.10"
3636

3737
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3838
# Run all pre-commit hooks on all the files.
3939
# Getting only staged files can be tricky in case a new PR is opened
4040
# since the action is run on a branch in detached head state
4141
name: Install and Run Pre-commit
42-
uses: pre-commit/action@v2.0.3
42+
uses: pre-commit/action@v3.0.0
4343

4444
build:
4545
name: Build (Python ${{ matrix.python-version }})
@@ -50,7 +50,7 @@ jobs:
5050
shell: bash -l {0}
5151
strategy:
5252
matrix:
53-
python-version: ["3.8", "3.9", "3.10"]
53+
python-version: ["3.9", "3.10"]
5454
steps:
5555
- id: skip_check
5656
uses: fkirc/skip-duplicate-actions@master
@@ -59,11 +59,11 @@ jobs:
5959
paths_ignore: ${{ env.PATHS_IGNORE }}
6060

6161
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v3
6363

6464
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
6565
name: Cache Conda
66-
uses: actions/cache@v2
66+
uses: actions/cache@v3
6767
env:
6868
# Increase this value to reset cache if conda-env/ci.yml has not changed in the workflow
6969
CACHE_NUMBER: 0
@@ -104,13 +104,13 @@ jobs:
104104
shell: bash -l {0}
105105
timeout-minutes: 5
106106
steps:
107-
- uses: actions/checkout@v2
107+
- uses: actions/checkout@v3
108108
with:
109109
persist-credentials: false
110110
fetch-depth: 0
111111

112112
- name: Cache Conda
113-
uses: actions/cache@v2
113+
uses: actions/cache@v3
114114
env:
115115
# Increase this value to reset cache if conda-env/docs.yml has not changed in the workflow
116116
CACHE_NUMBER: 0

.github/workflows/release_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
shell: bash -l {0}
1313
timeout-minutes: 5
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
persist-credentials: false
1818
fetch-depth: 0
1919

2020
- name: Cache Conda
21-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2222
env:
2323
# Increase this value to reset cache if conda-env/docs.yml has not changed in the workflow
2424
CACHE_NUMBER: 0

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,6 @@ ENV/
110110

111111
# NetCDF files needed
112112
!e3sm_diags/driver/acme_ne30_ocean_land_mask.nc
113+
114+
# Folder for storing quality assurance files and notes
115+
qa/

conda-env/prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ dependencies:
88
# =================
99
- python=3.9.10
1010
- pip=22.0.3
11-
- e3sm_diags=2.8.0rc1
11+
- e3sm_diags=2.8.0
1212
prefix: /opt/miniconda3/envs/e3sm_diags_prod

e3sm_diags/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
__version__ = "v2.8.0rc1"
4+
__version__ = "v2.8.0"
55
INSTALL_PATH = os.path.join(sys.prefix, "share/e3sm_diags/")
66

77
# Disable MPI in cdms2, which is not currently supported by E3SM-unified

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def get_all_files_in_dir(directory, pattern):
149149
"Programming Language :: Python :: 3.10",
150150
],
151151
name="e3sm_diags",
152-
version="2.8.0rc1",
152+
version="2.8.0",
153153
author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
154154
author_email="[email protected]",
155155
description="E3SM Diagnostics",

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
github_url = "https://github.com/E3SM-Project/e3sm_diags"
33

44
[version]
5-
current = "2.8.0rc1"
5+
current = "2.8.0"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

0 commit comments

Comments
 (0)