diff --git a/providers/snowflake/pyproject.toml b/providers/snowflake/pyproject.toml index a0ab83e7ba4f0..b64ed79b86f3a 100644 --- a/providers/snowflake/pyproject.toml +++ b/providers/snowflake/pyproject.toml @@ -65,7 +65,9 @@ dependencies = [ "snowflake-connector-python>=3.7.1", "snowflake-sqlalchemy>=1.4.0", "snowflake-snowpark-python>=1.17.0;python_version<'3.12'", - "snowflake-snowpark-python>=1.27.0;python_version>='3.12'", + # The "<9999" is a hint to the pip resolver to resolve this requirement early, + # can be removed when the pip resolver is improved + "snowflake-snowpark-python>=1.27.0,<9999;python_version>='3.12'", ] # The optional dependencies should be modified in place in the generated file