Skip to content

Commit

Permalink
use stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarthik108 committed Sep 24, 2023
1 parent 6acaf84 commit 753bfaa
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion examples/src/sproc/test_sproc/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ role = ""

[tool.poetry.dependencies]
python = "3.10.0"
snowflake-snowpark-python = "1.5.1"
snowflake-snowpark-python = "1.6.1"
18 changes: 9 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
python = ">=3.10.0,<3.11.0"
pydantic = "1.10.9"
termcolor = "2.3.0"
"snowflake-snowpark-python" = { version = "1.8.0", extras = ["pandas"] }
"snowflake-snowpark-python" = { version = "1.6.1", extras = ["pandas"] }
snowflake-ml-python = "1.0.5"
pyyaml = "^6.0.1"
toml = "^0.10.2"
Expand Down
2 changes: 1 addition & 1 deletion snowdev/fillers/sproc/fill.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ role = ""

[tool.poetry.dependencies]
python = "3.10.0"
snowflake-snowpark-python = "1.5.1"
snowflake-snowpark-python = "1.6.1"
2 changes: 1 addition & 1 deletion snowdev/fillers/udf/fill.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ role = ""

[tool.poetry.dependencies]
python = "3.10.0"
snowflake-snowpark-python = "1.5.1"
snowflake-snowpark-python = "1.6.1"
pandas = "2.0.3"
4 changes: 2 additions & 2 deletions src/sproc/test_new_/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from snowflake.snowpark import Session

def handler(session: Session, args) -> str:
def handler(session: Session) -> str:
customer_data = session.sql("SELECT * FROM customer_table LIMIT 1")
return customer_data.to_pandas()

Expand All @@ -10,4 +10,4 @@ def handler(session: Session, args) -> str:
from snowdev import SnowflakeConnection
session = SnowflakeConnection().get_session()

print(handler(session,"test"))
print(handler(session))
3 changes: 1 addition & 2 deletions src/sproc/test_new_/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ role = ""

[tool.poetry.dependencies]
python = "3.10.0"
snowflake-snowpark-python = "1.5.1"
pandas = "2.0.3"
snowflake-snowpark-python = "1.6.1"
2 changes: 1 addition & 1 deletion src/udf/test_new_/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ role = ""

[tool.poetry.dependencies]
python = "3.10.0"
snowflake-snowpark-python = "1.8.0"
snowflake-snowpark-python = "1.6.1"
pandas = "2.0.3"

0 comments on commit 753bfaa

Please sign in to comment.