diff --git a/src/__about__.py b/src/__about__.py index 5411c9a531..6d1f1c8554 100644 --- a/src/__about__.py +++ b/src/__about__.py @@ -1 +1 @@ -VERSION = "0.1.2" +VERSION = "0.1.3" diff --git a/src/snowcli/utils.py b/src/snowcli/utils.py index b872d6cf80..86b957f2a6 100644 --- a/src/snowcli/utils.py +++ b/src/snowcli/utils.py @@ -60,7 +60,7 @@ def parseAnacondaPackages(packages: list[str]) -> dict: for package in packages: if package in channel_data['packages']: snowflakePackages.append( - f'{package}=={channel_data["packages"][package]["version"]}') + f'{package}') else: click.echo( f'"{package}" not found in Snowflake anaconda channel...')