Skip to content

Commit

Permalink
fix: use new get_boolean_env_variable import path (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Feb 8, 2024
1 parent 680fe19 commit 081806b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions datahub-actions/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_long_description():
return description


acryl_datahub_min_version = os.environ.get("ACRYL_DATAHUB_MIN_VERSION") or "0.12.1.2"
acryl_datahub_min_version = os.environ.get("ACRYL_DATAHUB_MIN_VERSION") or "0.12.1.5"

base_requirements = {
f"acryl-datahub[datahub-kafka]>={acryl_datahub_min_version}",
Expand Down Expand Up @@ -85,7 +85,7 @@ def get_long_description():
"term_propagation": set(),
"snowflake_tag_propagation": {
f"acryl-datahub[snowflake]>={acryl_datahub_min_version}"
}
},
# Transformer Plugins (None yet)
}

Expand Down
2 changes: 1 addition & 1 deletion datahub-actions/src/datahub_actions/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import click
import stackprinter
from datahub.cli.cli_utils import get_boolean_env_variable
from datahub.cli.env_utils import get_boolean_env_variable
from prometheus_client import start_http_server

import datahub_actions as datahub_package
Expand Down

0 comments on commit 081806b

Please sign in to comment.