Skip to content

Commit

Permalink
V.3.2.2 cherrypicks (#1947)
Browse files Browse the repository at this point in the history
* Bump version

* Downgrade snowpark lib until a fix is identified (#1928)

* update release notes

* update snapshot

---------

Co-authored-by: Bruno Dufour <[email protected]>
  • Loading branch information
sfc-gh-pczajka and sfc-gh-bdufour authored Dec 12, 2024
1 parent 2926efd commit 5ec0612
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,16 @@
## New additions

## Fixes and improvements
* Fixed crashes with older x86_64 Intel CPUs.


# v3.2.2

## Deprecations

## New additions

## Fixes and improvements
* Fix "No module named 'pandas'" warning

# v3.2.1
## Backward incompatibility
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"setuptools==75.3.0",
'snowflake.core==0.12.1; python_version < "3.12"',
"snowflake-connector-python[secure-local-storage]==3.12.3",
'snowflake-snowpark-python>=1.15.0;python_version < "3.12"',
'snowflake-snowpark-python>=1.15.0,<1.26.0;python_version < "3.12"',
"tomlkit==0.13.2",
"typer==0.12.5",
"urllib3>=1.24.3,<2.3",
Expand Down
2 changes: 1 addition & 1 deletion snyk/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ requirements-parser==0.11.0
setuptools==75.3.0
snowflake.core==0.12.1; python_version < "3.12"
snowflake-connector-python[secure-local-storage]==3.12.3
snowflake-snowpark-python>=1.15.0;python_version < "3.12"
snowflake-snowpark-python>=1.15.0,<1.26.0;python_version < "3.12"
tomlkit==0.13.2
typer==0.12.5
urllib3>=1.24.3,<2.3
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/cli/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from __future__ import annotations

VERSION = "3.2.1"
VERSION = "3.2.2"
2 changes: 1 addition & 1 deletion tests_e2e/__snapshots__/test_installation.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

Usage: snow [OPTIONS] COMMAND [ARGS]...

Snowflake CLI tool for developers [v3.2.1]
Snowflake CLI tool for developers [v3.2.2]

+- Options --------------------------------------------------------------------+
| --version Shows version of the Snowflake CLI |
Expand Down
2 changes: 1 addition & 1 deletion tests_e2e/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _install_snowcli_with_external_plugin(
)

# Required by snowpark example tests
_pip_install(python, "snowflake-snowpark-python")
_pip_install(python, "snowflake-snowpark-python[pandas]==1.25.0")


def _python_path(venv_path: Path) -> Path:
Expand Down

0 comments on commit 5ec0612

Please sign in to comment.