Skip to content

Commit 09bb84c

Browse files
committed
Merge branch 'hotfix-v7.3'
This merge addresses an issue in MPAS-Atmosphere when obtaining physics lookup tables from the MPAS-Data repository at build time. On 15 March 2022, GitHub removed support for the unencrypted Git protocol (i.e., for obtaining repositories with URLs beginning with git://), resulting in the following error message during during the MPAS-Atmosphere build: *** Trying git to obtain WRF physics tables *** Cloning into 'MPAS-Data'... fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. This is remedied by simply switching from the unencrypted Git protocol to HTTPS when cloning the MPAS-Data repository.
2 parents 9096116 + 7b1db9c commit 09bb84c

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MPAS-v7.2
1+
MPAS-v7.3
22
====
33

44
The Model for Prediction Across Scales (MPAS) is a collaborative project for

src/core_atmosphere/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="atmosphere" core_abbrev="atm" version="7.2">
2+
<registry model="mpas" core="atmosphere" core_abbrev="atm" version="7.3">
33

44
<!-- **************************************************************************************** -->
55
<!-- ************************************** Dimensions ************************************** -->

src/core_atmosphere/physics/checkout_data_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fi
7373
which git
7474
if [ $? -eq 0 ]; then
7575
echo "*** Trying git to obtain WRF physics tables ***"
76-
git clone git://github.com/${github_org}/MPAS-Data.git
76+
git clone https://github.com/${github_org}/MPAS-Data.git
7777
if [ $? -eq 0 ]; then
7878
cd MPAS-Data
7979
git checkout v${mpas_vers}

src/core_init_atmosphere/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="init_atmosphere" core_abbrev="init_atm" version="7.2">
2+
<registry model="mpas" core="init_atmosphere" core_abbrev="init_atm" version="7.3">
33

44
<!-- **************************************************************************************** -->
55
<!-- ************************************** Dimensions ************************************** -->

src/core_landice/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="landice" core_abbrev="li" version="7.2">
2+
<registry model="mpas" core="landice" core_abbrev="li" version="7.3">
33

44

55
<!-- ======================================================================= -->

src/core_ocean/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="ocean" core_abbrev="ocn" version="7.2">
2+
<registry model="mpas" core="ocean" core_abbrev="ocn" version="7.3">
33

44
<dims>
55
<dim name="nCells" units="unitless"

src/core_seaice/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="seaice" core_abbrev="seaice" version="7.2">
2+
<registry model="mpas" core="seaice" core_abbrev="seaice" version="7.3">
33

44
<dims>
55
<dim name="nCells"

src/core_sw/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="sw" core_abbrev="sw" version="7.2">
2+
<registry model="mpas" core="sw" core_abbrev="sw" version="7.3">
33
<dims>
44
<dim name="nCells"/>
55
<dim name="nEdges"/>

src/core_test/Registry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<registry model="mpas" core="test" core_abbrev="test" version="7.2">
2+
<registry model="mpas" core="test" core_abbrev="test" version="7.3">
33
<dims>
44
<dim name="nCells"/>
55
<dim name="nEdges"/>

0 commit comments

Comments
 (0)