Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 25, 2023
1 parent 88097ba commit 8e2f751
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev162"
version = "0.0.0.dev163"
name = "RepoDynamics"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
8 changes: 6 additions & 2 deletions src/repodynamics/meta/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@ def read_metadata_output(self) -> tuple[dict, dict]:
json.dumps(metadata, indent=3)
)
else:
self._logger.attention(f"No {filename} file found in {path}.")
return out[0], out[1]
self._logger.error(f"No {filename} file found in {path}.")
self._metadata = out[0]
self._metadata_ci = out[1]
MetaValidator(metadata=self._metadata, logger=self._logger).validate()
self._manager = MetaManager(metadata=self._metadata)
return self._metadata, self._metadata_ci

def read_metadata_raw(self):
if self._metadata_raw:
Expand Down

0 comments on commit 8e2f751

Please sign in to comment.