Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Feel free to file an issue or submit a PR here for general cases. For official s

### Install with uv (PyPi)

We recommend installing Snowflake CLI in an isolated environment using [uv](https://docs.astral.sh/uv/guides/tools/#installing-tools). Requires Python >= 3.10
We recommend installing Snowflake CLI in an isolated environment using [uv](https://docs.astral.sh/uv/guides/tools/#installing-tools). Requires Python >= 3.10 < 3.14

```bash
uv tool install snowflake-cli
Expand All @@ -63,7 +63,7 @@ snow --help

### Install from source

Requires Python >= 3.10 and git
Requires Python >= 3.10 < 3.14 and git

```bash
git clone https://github.com/snowflakedb/snowflake-cli
Expand Down
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
## Fixes and improvements
* Bumped `snowflake-connector-python==3.18.0`
* Grant privileges defined in `snowflake.yml` after deploying Streamlit
* Restrict using Python 3.14 for the time being


# v3.12.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name = "snowflake-cli"
authors = [{ name = "Snowflake Inc." }]
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.10"
requires-python = ">=3.10,<3.14"
description = "Snowflake CLI"
readme = "README.md"
dependencies = [
Expand Down