Skip to content

Commit 992c87a

Browse files
[fix] Update Brickflow CLI version to 0.236.0 in bundle_synth (#220)
* [fix] Update Brickflow CLI version to 0.236.0 in bundle_synth * format
1 parent a0dbed3 commit 992c87a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

brickflow/cli/bundles.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
import os
66
import platform
77
import zipfile
8-
from typing import Callable, Any, Optional
8+
from typing import Any, Callable, Optional
99

1010
import requests
1111
from click import ClickException
1212
from decouple import config
1313

1414
from brickflow import (
1515
BrickflowEnvVars,
16-
ctx as brickflow_ctx,
1716
_ilog,
1817
get_bundles_project_env,
1918
get_entrypoint_python,
2019
)
21-
from brickflow.cli.constants import BrickflowDeployMode
20+
from brickflow import ctx as brickflow_ctx
2221
from brickflow.cli.commands import exec_command
2322
from brickflow.cli.configure import get_entrypoint, log_important_versions
23+
from brickflow.cli.constants import BrickflowDeployMode
2424

2525
ENV_FLAG = "-t"
2626

@@ -244,7 +244,7 @@ def bundle_synth(**kwargs: Any) -> None:
244244

245245

246246
def get_bundle_cli_version() -> str:
247-
return config(BrickflowEnvVars.BRICKFLOW_BUNDLE_CLI_VERSION.value, "0.228.0")
247+
return config(BrickflowEnvVars.BRICKFLOW_BUNDLE_CLI_VERSION.value, "0.236.0")
248248

249249

250250
def bundle_cli_setup() -> None:

0 commit comments

Comments
 (0)