From 63ffbb35cbcc0c7c499bde7ab5de56f4aad4b0ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 21:31:16 +0000 Subject: [PATCH 1/2] chore(deps): update aiohttp requirement from <4,>=3.7.3 to >=3.13.5,<4 --- updated-dependencies: - dependency-name: aiohttp dependency-version: 3.13.5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements/optional.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/optional.txt b/requirements/optional.txt index 48c9a630d..fdd24a33c 100644 --- a/requirements/optional.txt +++ b/requirements/optional.txt @@ -3,7 +3,7 @@ aiodns>1.0 # We recommend using 3.7.1+ for RTMClient # https://github.com/slackapi/python-slack-sdk/issues/912 -aiohttp>=3.7.3,<4 +aiohttp>=3.13.5,<4 # used only under slack_sdk/*_store boto3<=2 # InstallationStore/OAuthStateStore From 684f324d0c40be6982cf1b81c69e7dd88700cdb4 Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 4 May 2026 10:52:27 -0400 Subject: [PATCH 2/2] update for dependabot --- requirements/optional.txt | 4 +++- requirements/testing.txt | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/requirements/optional.txt b/requirements/optional.txt index fdd24a33c..3d0dba3c0 100644 --- a/requirements/optional.txt +++ b/requirements/optional.txt @@ -3,7 +3,9 @@ aiodns>1.0 # We recommend using 3.7.1+ for RTMClient # https://github.com/slackapi/python-slack-sdk/issues/912 -aiohttp>=3.13.5,<4 +aiohttp>=3.7.3,<3.9; python_version == "3.7" +aiohttp>=3.7.3,<3.11; python_version == "3.8" +aiohttp>=3.13.5,<4; python_version >= "3.9" # used only under slack_sdk/*_store boto3<=2 # InstallationStore/OAuthStateStore diff --git a/requirements/testing.txt b/requirements/testing.txt index 76aa747f7..f4c5eaa1b 100644 --- a/requirements/testing.txt +++ b/requirements/testing.txt @@ -1,5 +1,7 @@ # pip install -r requirements/testing.txt -aiohttp<4 # used for a WebSocket server mock +aiohttp<3.9; python_version == "3.7" # used for a WebSocket server mock +aiohttp<3.11; python_version == "3.8" # used for a WebSocket server mock +aiohttp<4; python_version >= "3.9" # used for a WebSocket server mock pytest>=7.0.1,<9 pytest-asyncio<2 # for async pytest-cov>=2,<8