From 37529892c42e1c7ac86d06e199695b692a150a69 Mon Sep 17 00:00:00 2001 From: Lawrence Adams Date: Tue, 21 Oct 2025 08:55:51 +0100 Subject: [PATCH 1/2] doc: Fix grammar in success message for package creation Basic English fixed --- src/snowflake/cli/_plugins/snowpark/package/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/snowflake/cli/_plugins/snowpark/package/commands.py b/src/snowflake/cli/_plugins/snowpark/package/commands.py index 905d1205de..4406b43670 100644 --- a/src/snowflake/cli/_plugins/snowpark/package/commands.py +++ b/src/snowflake/cli/_plugins/snowpark/package/commands.py @@ -181,9 +181,9 @@ def package_create( if download_result.anaconda_packages: message += dedent( f""" - The package {name} is successfully created, but depends on the following + The package {name} is successfully created, but depend on the following Anaconda libraries. They need to be included in project requirements, - as their are not included in .zip. + as they are not included in the .zip. """ ) message += "\n".join( From a33f2cfad4ddd4ca91ac23bb88c4eb9922698d18 Mon Sep 17 00:00:00 2001 From: Lawrence Adams Date: Tue, 21 Oct 2025 09:32:35 +0100 Subject: [PATCH 2/2] Update commands.py --- src/snowflake/cli/_plugins/snowpark/package/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snowflake/cli/_plugins/snowpark/package/commands.py b/src/snowflake/cli/_plugins/snowpark/package/commands.py index 4406b43670..68b6824d75 100644 --- a/src/snowflake/cli/_plugins/snowpark/package/commands.py +++ b/src/snowflake/cli/_plugins/snowpark/package/commands.py @@ -181,7 +181,7 @@ def package_create( if download_result.anaconda_packages: message += dedent( f""" - The package {name} is successfully created, but depend on the following + The package {name} is successfully created, but depends on the following Anaconda libraries. They need to be included in project requirements, as they are not included in the .zip. """