Skip to content

Commit

Permalink
Server-side Snowpark: Explain rationale for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-oplaton committed Oct 25, 2024
1 parent 29cf142 commit bb74ce4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
CONNECTOR_DEPENDENCY,
# snowpark directly depends on typing-extension, so we should not remove it even if connector also depends on it.
"typing-extensions>=4.1.0, <5.0.0",
"protobuf>=5.28",
"tzlocal",
"pyyaml",
"cloudpickle>=1.6.0,<=2.2.1,!=2.1.0,!=2.2.0;python_version<'3.11'",
"cloudpickle==2.2.1;python_version~='3.11'", # backend only supports cloudpickle 2.2.1 + python 3.11 at the moment
"protobuf>=5.28", # Server-side Snowpark
"tzlocal", # Server-side Snowpark
]
REQUIRED_PYTHON_VERSION = ">=3.8, <3.12"

Expand Down Expand Up @@ -53,7 +53,7 @@
"graphviz", # used in plot tests
"pytest-assume", # sql counter check
"decorator", # sql counter check
"protoc-wheel-0",
"protoc-wheel-0", # Protocol buffer compiler, for server-side Snowpark
]

# read the version
Expand Down

0 comments on commit bb74ce4

Please sign in to comment.