Skip to content

Commit 322f4eb

Browse files
Merge branch 'main' into daniszewski-SNOW-2206349-fix-streamlit-grants
2 parents ac56f31 + 8d3b53d commit 322f4eb

File tree

27 files changed

+114
-86
lines changed

27 files changed

+114
-86
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
python-version: "3.x"
3434
- name: Install pre-commit
35-
run: python -m pip install pre-commit tomlkit hatch uv
35+
run: python -m pip install pre-commit tomlkit click==8.2.1 hatch uv
3636
- name: Check if pyproject.toml was changed
3737
id: pyproject_changed
3838
run: |

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Install hatch
4040
run: |
41-
pip install -U hatch
41+
pip install -U click==8.2.1 hatch
4242
hatch env create default
4343
- name: Test with hatch
4444
run: hatch run test-cov

.github/workflows/test_fork.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
python-version: ${{ inputs.python-version }}
3737
- name: Install dependencies
3838
run: |
39-
python -m pip install --upgrade pip hatch
39+
python -m pip install --upgrade pip click==8.2.1 hatch
4040
python -m hatch env create ${{ inputs.python-env }}
4141
- name: Run integration tests
4242
env:

.github/workflows/test_perfomance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python-version: "3.10"
3333
- name: Install hatch
3434
run: |
35-
pip install -U hatch
35+
pip install -U click==8.2.1 hatch
3636
hatch env create default
3737
- name: Run performance tests
3838
run: hatch run performance:test

.github/workflows/test_trusted.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ${{ inputs.python-version }}
3434
- name: Install dependencies
3535
run: |
36-
python -m pip install --upgrade pip hatch
36+
python -m pip install --upgrade pip click==8.2.1 hatch
3737
python -m hatch env create ${{ inputs.python-env }}
3838
- name: Run integration tests
3939
env:

RELEASE-NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
## New additions
2222

2323
## Fixes and improvements
24+
* Bumped `snowflake-connector-python==3.17.4`
25+
* Fixed `snow spcs logs` `IndexOutOfRange` error
2426
* Grant privileges defined in `snowflake.yml` after deploying Streamlit
2527

2628

@@ -42,7 +44,6 @@
4244
* Improved output handling with streaming
4345
* Bumped `snowflake-connector-python` to 3.17.3
4446
* Fixed `snow snowpark deploy` failing on duplicated packages
45-
* Extend `Decimal` precision to 38
4647

4748

4849
# v3.11.0

pylock.toml

Lines changed: 27 additions & 27 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies = [
4040
"requirements-parser==0.13.0",
4141
"rich==14.0.0",
4242
"setuptools==80.8.0",
43-
"snowflake-connector-python[secure-local-storage]==3.17.3",
43+
"snowflake-connector-python[secure-local-storage]==3.17.4",
4444
'snowflake-snowpark-python==1.33.0;python_version < "3.12"',
4545
"snowflake.core==1.7.0",
4646
"tomlkit==0.13.3",

scripts/packaging/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN chmod +x /tmp/build_python.sh && /tmp/build_python.sh && rm /tmp/build_pytho
4040
ENV PATH="/usr/local/bin:$PATH"
4141

4242
# Install build tools - these are not embedded in final binary so can use pre-built wheels
43-
RUN python -m pip install -U uv hatch
43+
# pinning click to 8.2.1 due to issues with 8.3.0 https://github.com/pypa/hatch/issues/2050
44+
RUN python -m pip install -U click==8.2.1 uv hatch
4445

4546
WORKDIR /snowflake-cli

scripts/packaging/build_darwin_package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python3.11 -m venv venv
1111
python --version
1212

1313
echo "--- installing dependencies ---"
14-
pip install hatch
14+
pip install click==8.2.1 hatch
1515

1616
# install cargo
1717
if [[ ${MACHINE} == "arm64" ]]; then

0 commit comments

Comments
 (0)