Skip to content
Closed
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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Snowpark Python API Updates

#### Dependency Updates

- Tightened the upper bound of the `snowflake-connector-python` dependency from `<5.0.0` to `<5.0.0a0` so that pre-release versions (e.g. `5.0.0b1`) are excluded under both pip and conda resolvers. Without the explicit `a0` suffix, conda orders `5.0.0b1` as less than `5.0.0` and treats it as satisfying `<5.0.0`, which allowed beta connector releases to be selected from the Anaconda channel.

#### New Features

#### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion ci/snyk/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setuptools>=40.6.0
wheel
cloudpickle>=1.6.0,<=3.1.1,!=2.1.0,!=2.2.0
snowflake-connector-python>=4.0.0,<5.0.0
snowflake-connector-python>=4.0.0,<5.0.0a0
typing-extensions>=4.1.0,<5.0.0
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ requirements:
- python
{% endif %}
- cloudpickle >=1.6.0,<=3.1.1,!=2.1.0,!=2.2.0
- snowflake-connector-python >=3.17.0,<5.0.0
- snowflake-connector-python >=3.17.0,<5.0.0a0
- typing-extensions >=4.1.0,<5.0.0
# need to pin libffi because of problems in cryptography.
# This might no longer hold true but keep it just to avoid it from biting us again
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Snowpark pandas requires modin 0.36.x or 0.37.x, which are compatible with pandas
# 2.2.x or 2.3.x
MODIN_DEPENDENCY_VERSION = ">=0.36.0, <0.38.0"
CONNECTOR_DEPENDENCY_VERSION = ">=3.17.0, <5.0.0"
CONNECTOR_DEPENDENCY_VERSION = ">=3.17.0, <5.0.0a0"
CONNECTOR_DEPENDENCY = f"snowflake-connector-python{CONNECTOR_DEPENDENCY_VERSION}"
INSTALL_REQ_LIST = [
"setuptools>=40.6.0",
Expand Down
Loading