From 86f736735b86b0d14e0a1704c491233b63745c6d Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Wed, 9 Oct 2024 15:36:00 +0200 Subject: [PATCH] Update formula to v3.0.1 (#38) --- Formula/snowcli.rb | 8 ++++---- Formula/snowcli.tmpl.rb | 2 +- Formula/snowflake-cli.rb | 8 ++++---- Formula/snowflake-cli.tmpl.rb | 2 +- update.sh | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Formula/snowcli.rb b/Formula/snowcli.rb index 5d0fc8a..dfd3452 100644 --- a/Formula/snowcli.rb +++ b/Formula/snowcli.rb @@ -1,9 +1,9 @@ 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/2e/b4/a5b038f0e6758fd42fa48688d7a1cba8538a2cf19b84bb70fcce63474ebd/snowflake_cli_labs-3.0.0.tar.gz" - sha256 "5f3bd4d2d988fb66603d1bcba2dbd69ea1955cd8b56002c8a3e24d5aef595d30" + homepage "https://github.com/snowflakedb/snowflake-cli" + url "https://files.pythonhosted.org/packages/b4/9e/bd9ed74b85dab344eae3a5f10fbd5716c64ffd74b771726dbf7965a3a24f/snowflake_cli-3.0.1.tar.gz" + sha256 "28b68103179eaa9d507a2cd1632113f8db17427a578bce1d7d7df3ee79f90a92" depends_on "python3" @@ -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==3.0.0" + "-m", "pip", "install", "snowflake-cli==3.0.1" bin.install_symlink "#{libexec}/bin/snow" => "snow" end diff --git a/Formula/snowcli.tmpl.rb b/Formula/snowcli.tmpl.rb index ce02615..584c817 100644 --- a/Formula/snowcli.tmpl.rb +++ b/Formula/snowcli.tmpl.rb @@ -1,7 +1,7 @@ class Snowcli < Formula include Language::Python::Virtualenv desc "A CLI for Snowflake development" - homepage "https://github.com/snowflake-labs/snowflake-cli" + homepage "https://github.com/snowflakedb/snowflake-cli" url "{{ sf_url }}" sha256 "{{ sf_sha }}" diff --git a/Formula/snowflake-cli.rb b/Formula/snowflake-cli.rb index 434448b..79cc16b 100644 --- a/Formula/snowflake-cli.rb +++ b/Formula/snowflake-cli.rb @@ -1,9 +1,9 @@ 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/2e/b4/a5b038f0e6758fd42fa48688d7a1cba8538a2cf19b84bb70fcce63474ebd/snowflake_cli_labs-3.0.0.tar.gz" - sha256 "5f3bd4d2d988fb66603d1bcba2dbd69ea1955cd8b56002c8a3e24d5aef595d30" + homepage "https://github.com/snowflakedb/snowflake-cli" + url "https://files.pythonhosted.org/packages/b4/9e/bd9ed74b85dab344eae3a5f10fbd5716c64ffd74b771726dbf7965a3a24f/snowflake_cli-3.0.1.tar.gz" + sha256 "28b68103179eaa9d507a2cd1632113f8db17427a578bce1d7d7df3ee79f90a92" depends_on "python3" @@ -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==3.0.0" + "-m", "pip", "install", "snowflake-cli==3.0.1" bin.install_symlink "#{libexec}/bin/snow" => "snow" end diff --git a/Formula/snowflake-cli.tmpl.rb b/Formula/snowflake-cli.tmpl.rb index ee80017..5bcc20e 100644 --- a/Formula/snowflake-cli.tmpl.rb +++ b/Formula/snowflake-cli.tmpl.rb @@ -1,7 +1,7 @@ class SnowflakeCli < Formula include Language::Python::Virtualenv desc "A CLI for Snowflake development" - homepage "https://github.com/snowflake-labs/snowflake-cli" + homepage "https://github.com/snowflakedb/snowflake-cli" url "{{ sf_url }}" sha256 "{{ sf_sha }}" diff --git a/update.sh b/update.sh index 5d4d732..d76db57 100644 --- a/update.sh +++ b/update.sh @@ -9,7 +9,7 @@ python -m venv "${ENV}" source "${ENV}/bin/activate" # Install requirements -pip install snowflake-cli-labs +pip install snowflake-cli pip install homebrew-pypi-poet # Update formula