Skip to content

Commit 2790648

Browse files
authored
Merge pull request #310 from jedwards4b/updates/alpha05c
Updates/alpha05c
2 parents 8e95bbb + b7515bb commit 2790648

File tree

10 files changed

+23
-22
lines changed

10 files changed

+23
-22
lines changed

.gitmodules

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
path = ccs_config
3131
url = https://github.com/ESMCI/ccs_config_cesm.git
3232
fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git
33-
fxtag = ccs_config_cesm1.0.15
33+
fxtag = ccs_config_cesm1.0.16
3434
fxrequired = ToplevelRequired
3535

3636
[submodule "cime"]
3737
path = cime
3838
url = https://github.com/ESMCI/cime
3939
fxDONOTUSEurl = https://github.com/ESMCI/cime
40-
fxtag = cime6.1.46
40+
fxtag = cime6.1.56
4141
fxrequired = ToplevelRequired
4242

4343
[submodule "fms"]
@@ -51,29 +51,29 @@
5151
path = share
5252
url = https://github.com/ESCOMP/CESM_share
5353
fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share
54-
fxtag = share1.1.5
54+
fxtag = share1.1.7
5555
fxrequired = ToplevelRequired
5656

5757
[submodule "cam"]
5858
path = components/cam
5959
url = https://www.github.com/ESCOMP/CAM
6060
fxDONOTUSEurl = https://www.github.com/ESCOMP/CAM
61-
fxtag = cam6_4_047
61+
fxtag = cam6_4_048
6262
fxrequired = ToplevelRequired
6363

6464
[submodule "clm"]
6565
path = components/clm
6666
url = https://github.com/ESCOMP/CTSM
6767
fxDONOTUSEurl = https://github.com/ESCOMP/CTSM
6868
fxrequired = ToplevelRequired
69-
fxtag = ctsm5.3.014
69+
fxtag = ctsm5.3.016
7070

7171
[submodule "cice"]
7272
path = components/cice
7373
url = https://github.com/ESCOMP/CESM_CICE
7474
fxDONOTUSEurl = https://github.com/ESCOMP/CESM_CICE
7575
fxrequired = ToplevelRequired
76-
fxtag = cesm3_cice6_6_0_2
76+
fxtag = cesm3_cice6_6_0_5
7777

7878
[submodule "mom"]
7979
path = components/mom
@@ -86,29 +86,29 @@
8686
path = components/cism
8787
url = https://github.com/ESCOMP/cism-wrapper.git
8888
fxDONOTUSEurl = https://github.com/ESCOMP/cism-wrapper.git
89-
fxtag = cismwrap_2_2_002
89+
fxtag = cismwrap_2_2_005
9090
fxrequired = ToplevelRequired
9191

9292
[submodule "cdeps"]
9393
path = components/cdeps
9494
url = https://github.com/ESCOMP/CDEPS
9595
fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS
9696
fxrequired = ToplevelRequired
97-
fxtag = cdeps1.0.57
97+
fxtag = cdeps1.0.61
9898

9999
[submodule "cmeps"]
100100
path = components/cmeps
101101
url = https://github.com/ESCOMP/CMEPS.git
102102
fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git
103103
fxrequired = ToplevelRequired
104-
fxtag = cmeps1.0.25
104+
fxtag = cmeps1.0.33
105105

106106
[submodule "rtm"]
107107
path = components/rtm
108108
url = https://github.com/ESCOMP/RTM
109109
fxDONOTUSEurl = https://github.com/ESCOMP/RTM
110110
fxrequired = ToplevelRequired
111-
fxtag = rtm1_0_83
111+
fxtag = rtm1_0_84
112112

113113
[submodule "ww3"]
114114
path = components/ww3
@@ -122,14 +122,14 @@
122122
url = https://github.com/ESCOMP/mizuRoute
123123
fxDONOTUSEurl = https://github.com/ESCOMP/mizuRoute
124124
fxrequired = ToplevelRequired
125-
fxtag = cesm-coupling.n02_v2.1.3
125+
fxtag = cesm-coupling.n03_v2.2.0
126126

127127
[submodule "mosart"]
128128
path = components/mosart
129129
url = https://github.com/ESCOMP/MOSART
130130
fxDONOTUSEurl = https://github.com/ESCOMP/MOSART
131131
fxrequired = ToplevelRequired
132-
fxtag = mosart1.1.05
132+
fxtag = mosart1.1.06
133133

134134
[submodule "parallelio"]
135135
path = libraries/parallelio
@@ -157,4 +157,4 @@
157157
url = https://github.com/NCAR/CUPiD.git
158158
fxDONOTUSEurl = https://github.com/NCAR/CUPiD.git
159159
fxrequired = ToplevelRequired
160-
fxtag = v0.1.1
160+
fxtag = v0.1.2

.lib/git-fleximod/git_fleximod/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import argparse
33
from git_fleximod import utils
44

5-
__version__ = "0.9.3"
5+
__version__ = "0.9.4"
66

77
def find_root_dir(filename=".gitmodules"):
88
""" finds the highest directory in tree

.lib/git-fleximod/git_fleximod/git_fleximod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ def init_submodule_from_gitmodules(gitmodules, name, root_dir, logger):
181181
url = gitmodules.get(name, "url")
182182
assert path and url, f"Malformed .gitmodules file {path} {url}"
183183
tag = gitmodules.get(name, "fxtag")
184+
if not tag:
185+
tag = gitmodules.get(name, "hash")
184186
fxurl = gitmodules.get(name, "fxDONOTUSEurl")
185187
fxsparse = gitmodules.get(name, "fxsparse")
186188
fxrequired = gitmodules.get(name, "fxrequired")
@@ -250,7 +252,6 @@ def submodules_update(gitmodules, root_dir, requiredlist, force):
250252
newrequiredlist = ["AlwaysRequired"]
251253
if optional:
252254
newrequiredlist.append("AlwaysOptional")
253-
254255
submodules_update(gitsubmodules, repodir, newrequiredlist, force=force)
255256

256257
def local_mods_output():

.lib/git-fleximod/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "git-fleximod"
3-
version = "0.9.3"
3+
version = "0.9.4"
44
description = "Extended support for git-submodule and git-sparse-checkout"
55
authors = ["Jim Edwards <jedwards@ucar.edu>"]
66
maintainers = ["Jim Edwards <jedwards@ucar.edu>"]

.lib/git-fleximod/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/jedwards4b/git-fleximod/"
33

44
[version]
5-
current = "0.9.3"
5+
current = "0.9.4"
66

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

ccs_config

cime

components/cice

0 commit comments

Comments
 (0)