Skip to content

Commit

Permalink
Catalog sys (#61)
Browse files Browse the repository at this point in the history
* added catalog system
  • Loading branch information
KapilDuwadi authored Dec 5, 2024
1 parent a32bf6f commit 42c89b9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/gdm/distribution/catalog_system.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import importlib.metadata

from infrasys import System


class CatalogSystem(System):
"""Class interface for catalog system."""

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.data_format_version = importlib.metadata.version("grid-data-models")
2 changes: 1 addition & 1 deletion src/gdm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import platform
import sys

VERSION = "1.3.0"
VERSION = "1.3.1"


def is_git_repo(dir: Path) -> bool:
Expand Down

0 comments on commit 42c89b9

Please sign in to comment.