Skip to content
Merged
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
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@ powertools = [
"coloredlogs>=15.0",
]
jwt = ["rsa>=4.9"]
# Tag pin to the public snowflake-sql-api repo. Repin to a PyPI release once
# that package is published. Kept out of `all` so nothing pulls the git
# dependency implicitly.
# Pinned to the published PyPI release (no direct-URL deps, PyPI rejects those
# on upload). Kept out of `all`: opt-in.
snowflake = [
"snowflake-sql-api @ git+https://github.com/hampsterx/snowflake-sql-api.git@v0.1.1",
"snowflake-sql-api>=0.1.1,<0.2.0",
]
# Anthropic (Claude) helper. anthropic[bedrock] covers both auth modes (API key
# + Bedrock IAM). Kept out of `all` (same as snowflake): the SDK is specialized
Expand Down Expand Up @@ -78,7 +77,7 @@ dev = [
"build>=0.8.0",
"rsa>=4.9",
"cryptography>=41.0.0",
"snowflake-sql-api @ git+https://github.com/hampsterx/snowflake-sql-api.git@v0.1.1",
"snowflake-sql-api>=0.1.1,<0.2.0",
"anthropic[bedrock]>=0.45.0,<1.0.0",
]

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,10 @@
"coloredlogs>=15.0",
],
"jwt": ["rsa>=4.9"],
# Pre-release pin to the public snowflake-sql-api repo (PR #1 merge
# commit on master). Repinned to a PyPI release (>=0.1.0) once that
# package ships. Kept out of "all" so nothing pulls the git dep
# implicitly.
# Pinned to the published PyPI release (no direct-URL deps, PyPI rejects
# those on upload). Kept out of "all": opt-in.
"snowflake": [
"snowflake-sql-api @ git+https://github.com/hampsterx/snowflake-sql-api.git@50205b0cb63df008c9c453ee05f0f130dcfe4805",
"snowflake-sql-api>=0.1.1,<0.2.0",
],
# Anthropic (Claude) helper. anthropic[bedrock] covers both auth modes
# (API key + Bedrock IAM). Kept out of "all" (same as snowflake): the
Expand Down
Loading