Skip to content

Commit

Permalink
Update formula to v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pczajka committed Aug 27, 2024
1 parent a22b0e0 commit 3592a34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Formula/snowcli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class Snowcli < Formula
include Language::Python::Virtualenv
desc "A CLI for Snowflake development"
homepage "https://github.com/snowflake-labs/snowflake-cli"
url "https://files.pythonhosted.org/packages/e7/bb/31bda15a7c5ace34ff8d074aad817d7ecdc8ec21e26982f6092081c8d391/snowflake_cli_labs-2.7.0.tar.gz"
sha256 "11e431ddd06f304c6a3ca1f829f16e889fd4a9c0506a3f67aa0bff6b917ff84b"
url "https://files.pythonhosted.org/packages/14/cb/29efb84475c5b593758e8985ba145364b0d27115d1bd80868e73461b4da6/snowflake_cli_labs-2.8.0.tar.gz"
sha256 "e05788ee101a976586ac39e7f57d85635554f954fdfdcf01ea34e11cc821fe1d"

depends_on "python3"

Expand All @@ -13,7 +13,7 @@ def install
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "ensurepip", "--upgrade"
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "snowflake-cli-labs==2.7.0"
"-m", "pip", "install", "snowflake-cli-labs==2.8.0"
bin.install_symlink "#{libexec}/bin/snow" => "snow"
end

Expand Down
6 changes: 3 additions & 3 deletions Formula/snowflake-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class SnowflakeCli < Formula
include Language::Python::Virtualenv
desc "A CLI for Snowflake development"
homepage "https://github.com/snowflake-labs/snowflake-cli"
url "https://files.pythonhosted.org/packages/e7/bb/31bda15a7c5ace34ff8d074aad817d7ecdc8ec21e26982f6092081c8d391/snowflake_cli_labs-2.7.0.tar.gz"
sha256 "11e431ddd06f304c6a3ca1f829f16e889fd4a9c0506a3f67aa0bff6b917ff84b"
url "https://files.pythonhosted.org/packages/14/cb/29efb84475c5b593758e8985ba145364b0d27115d1bd80868e73461b4da6/snowflake_cli_labs-2.8.0.tar.gz"
sha256 "e05788ee101a976586ac39e7f57d85635554f954fdfdcf01ea34e11cc821fe1d"

depends_on "python3"

Expand All @@ -13,7 +13,7 @@ def install
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "ensurepip", "--upgrade"
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "snowflake-cli-labs==2.7.0"
"-m", "pip", "install", "snowflake-cli-labs==2.8.0"
bin.install_symlink "#{libexec}/bin/snow" => "snow"
end

Expand Down

0 comments on commit 3592a34

Please sign in to comment.