Fix dependency resolution for dev installs#341
Merged
sfc-gh-mwyatt merged 3 commits intosnowflakedb:mainfrom Jan 22, 2026
Merged
Fix dependency resolution for dev installs#341sfc-gh-mwyatt merged 3 commits intosnowflakedb:mainfrom
sfc-gh-mwyatt merged 3 commits intosnowflakedb:mainfrom
Conversation
Contributor
Author
|
@sfc-gh-dhung @sfc-gh-mwyatt Apologies for the direct ping but I wanted to flag that the |
sfc-gh-mwyatt
approved these changes
Jan 22, 2026
Collaborator
sfc-gh-mwyatt
left a comment
There was a problem hiding this comment.
Thank you for the contribution!
|
|
||
| cortex = [ | ||
| "snowflake-connector-python==3.12.3", | ||
| "snowflake-connector-python>=3.17.3,<4", |
Contributor
There was a problem hiding this comment.
@sfc-gh-caxu does Arctic Synth need any particular version of snowflake-connector-python, or can we remove version constraints for it altogether? (Or just something broad like >=3.12.0)?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Installing dev dependencies fails due to incompatible dependency constraints.
Snowflake connector conflict
snowflake-ml-python>=1.21.0requiressnowflake-connector-python>=3.17.3,<4cortexpinnedsnowflake-connector-python==3.12.3Which results in
[dev]and[all]extras being unsatisfiablePython version / Sphinx conflict
requires-python = ">=3.8"includes Python versions no longer supported by currentsphinxsphinx>=8.1.3requires Python >=3.10This results in dependency resolution fails even when using Python 3.10+
Reproduction
Solution