Skip to content

Commit 6758c67

Browse files
v2.5.0rc1 update (#457)
* v2.5.0rc1 update * change source in meta.yaml
1 parent 9f6a8fc commit 6758c67

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM continuumio/miniconda3:4.6.14
66

77
LABEL maintainer="[email protected]"
8-
LABEL version="2.4.0"
8+
LABEL version="2.5.0rc1"
99

1010
# Copy the entire project dir because we'll install from source.
1111
COPY . .

acme_diags/__init__.py

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

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

conda/e3sm_diags_env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ dependencies:
1919
- pip=21.0.1
2020
- python=3.7.10
2121
# Additional
22-
- e3sm_diags=2.4.0
22+
- e3sm_diags=2.5.0rc1
2323
prefix: /opt/miniconda3/envs/e3sm_diags_env

conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% set name = "e3sm_diags" %}
2-
{% set version = "2.4.0" %}
2+
{% set version = "2.5.0rc1" %}
33

44
package:
55
name: {{ name|lower }}
66
version: {{ version }}
77

88
source:
9-
url: https://github.com/E3SM-Project/e3sm_diags/archive/v{{ version }}.tar.gz
10-
sha256: cd4651e4f45a956e5f55555e813b166cd37d04689dbc56fdb2c2b7e2540245c6
9+
git_url: git://github.com/E3SM-Project/e3sm_diags
10+
git_rev: v{{ version }}
1111

1212
build:
1313
number: 0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def get_all_files_in_dir(directory, pattern):
110110

111111
setup(
112112
name="e3sm_diags",
113-
version="2.4.0",
114-
author="Chengzhu (Jill) Zhang, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
113+
version="2.5.0rc1",
114+
author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
115115
author_email="[email protected]",
116116
description="E3SM Diagnostics",
117117
scripts=["acme_diags/acme_diags_driver.py"],

0 commit comments

Comments
 (0)