Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit 60f5414

Browse files
authored
Add __version__ strings to packages (#325)
## Purpose This PR sets version strings in all pace.* packages to match their setup.py versions.
1 parent e2d7a79 commit 60f5414

5 files changed

Lines changed: 12 additions & 0 deletions

File tree

driver/pace/driver/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@
1212
from .registry import Registry
1313
from .restart import Restart
1414
from .state import DriverState, TendencyState
15+
16+
17+
__version__ = "0.1.0"

dsl/pace/dsl/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@
2020
gt4py.config.cache_settings["dir_name"] = os.environ.get(
2121
"GT_CACHE_DIR_NAME", f".gt_cache_{MPI.COMM_WORLD.Get_rank():06}"
2222
)
23+
24+
__version__ = "0.1.0"

fv3core/pace/fv3core/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
from .initialization.dycore_state import DycoreState
33
from .stencils.fv_dynamics import DynamicalCore
44
from .stencils.fv_subgridz import DryConvectiveAdjustment
5+
6+
7+
__version__ = "0.1.0"

physics/pace/physics/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
from ._config import PhysicsConfig
22
from .physics_state import PhysicsState
33
from .stencils.physics import Physics
4+
5+
6+
__version__ = "0.1.0"

stencils/pace/stencils/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)