diff --git a/providers/amazon/pyproject.toml b/providers/amazon/pyproject.toml index bf67fb0f8cd63..c4ee1942d0e6d 100644 --- a/providers/amazon/pyproject.toml +++ b/providers/amazon/pyproject.toml @@ -77,7 +77,10 @@ dependencies = [ "asgiref>=2.3.0", "PyAthena>=3.10.0", "jmespath>=0.7.0", - "sagemaker-studio>=1.0.9", + "sagemaker-studio>=1.0.9; python_version < \"3.13\"", + # The sagemaker studio 1.1.0+ uses pydynamodb that pins sqlean in version 3.45.1 that is not + # Supporting Python 3.13 https://github.com/passren/PyDynamoDB/issues/72 + "sagemaker-studio>=1.0.9,<1.1.0; python_version >= \"3.13\"", "marshmallow>=3", ]