From 52964cfeae60117f4da71e3201bf094fdefd39a8 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Mon, 26 Jun 2023 13:21:33 -0700 Subject: [PATCH] Remove debugging log line and increment package version. --- dbt_semantic_interfaces/parsing/dir_to_model.py | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/dbt_semantic_interfaces/parsing/dir_to_model.py b/dbt_semantic_interfaces/parsing/dir_to_model.py index e5b4fd11..ad9a8f6d 100644 --- a/dbt_semantic_interfaces/parsing/dir_to_model.py +++ b/dbt_semantic_interfaces/parsing/dir_to_model.py @@ -206,7 +206,6 @@ def parse_yaml_files_to_semantic_manifest( issues: List[ValidationIssue] = [] for config_file in files: - logger.error(f"Parsing: {config_file}") parsing_result = parse_config_yaml( # parse config file config_file, semantic_model_class=semantic_model_class, diff --git a/pyproject.toml b/pyproject.toml index 6efd8160..9072dc09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dbt-semantic-interfaces" -version = "0.1.0.dev8" +version = "0.1.0.dev9" description = 'The shared semantic layer definitions that dbt-core and MetricFlow use' readme = "README.md" requires-python = ">=3.8"