From 7eeca80df67401b62954a58b07d7ea3c3077ec29 Mon Sep 17 00:00:00 2001 From: Daniel Gafni Date: Thu, 9 Jan 2025 16:58:44 +0200 Subject: [PATCH] [dagster-aws] remove stubs from runtime dependencies (#26968) ## Summary & Motivation Somehow I forgot to remove `boto3-stubs` from the main runtime dependencies when moving them to `stubs` extras. Fixing this issue. --- python_modules/libraries/dagster-aws/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python_modules/libraries/dagster-aws/setup.py b/python_modules/libraries/dagster-aws/setup.py index fafbde2392fb9..8936b87626476 100644 --- a/python_modules/libraries/dagster-aws/setup.py +++ b/python_modules/libraries/dagster-aws/setup.py @@ -35,7 +35,6 @@ def get_version() -> str: python_requires=">=3.9,<3.13", install_requires=[ "boto3", - "boto3-stubs-lite[ecs,glue,emr,emr-serverless]", f"dagster{pin}", "packaging", "requests",