From 9971d3e376278311860814ce07764846fd70bb0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 13:23:59 +0000 Subject: [PATCH 1/3] chore(deps): update aiodns requirement from >1.0 to >=4.0.4 Updates the requirements on [aiodns](https://github.com/aio-libs/aiodns) to permit the latest version. - [Release notes](https://github.com/aio-libs/aiodns/releases) - [Changelog](https://github.com/aio-libs/aiodns/blob/master/ChangeLog) - [Commits](https://github.com/aio-libs/aiodns/compare/aiodns-1.0.1...v4.0.4) --- updated-dependencies: - dependency-name: aiodns dependency-version: 4.0.4 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 0a00428be..160c6b7a4 100644 --- a/requirements/optional.txt +++ b/requirements/optional.txt @@ -1,6 +1,6 @@ # pip install -r requirements/optional.txt # async modules depend on aiohttp -aiodns>1.0 +aiodns>=4.0.4 # We recommend using 3.7.1+ for RTMClient # https://github.com/slackapi/python-slack-sdk/issues/912 aiohttp>=3.7.3,<3.9; python_version == "3.7" From c6c4284c87c7d1f662b0894c6af8a581b63fef79 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 15:56:21 +0000 Subject: [PATCH 2/3] chore(deps): update aiodns requirement from >1.0 to >=4.0.4 Updates the requirements on [aiodns](https://github.com/aio-libs/aiodns) to permit the latest version. - [Release notes](https://github.com/aio-libs/aiodns/releases) - [Changelog](https://github.com/aio-libs/aiodns/blob/master/ChangeLog) - [Commits](https://github.com/aio-libs/aiodns/compare/aiodns-1.0.1...v4.0.4) --- updated-dependencies: - dependency-name: aiodns dependency-version: 4.0.4 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 582a6746b..f46ef8c0c 100644 --- a/requirements/optional.txt +++ b/requirements/optional.txt @@ -4,7 +4,7 @@ # aiodns # Note: async modules depend on aiohttp -aiodns>1.0 +aiodns>=4.0.4 # aiohttp # We recommend using 3.7.1+ for RTMClient From 670f1610df229221696d78de4d4a967342a38d7c Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 20 Jul 2026 10:50:28 -0400 Subject: [PATCH 3/3] chore(deps): keep aiodns installable across the full Python matrix aiodns raised its minimum Python in stages (>=3.9 at 3.3.0, >=3.10 at 4.0.0). optional.txt installs on the full CI matrix (3.7 -> 3.14 + PyPy), so a bare aiodns>=4.0.4 breaks the install step on 3.7/3.8/3.9. Split into python_version-marked lines so each interpreter installs its last compatible release and 3.10+ takes the bump. Co-Authored-By: Claude --- requirements/optional.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/requirements/optional.txt b/requirements/optional.txt index f46ef8c0c..b7561392d 100644 --- a/requirements/optional.txt +++ b/requirements/optional.txt @@ -3,8 +3,11 @@ # metadata via [tool.setuptools.dynamic] in pyproject.toml. # aiodns -# Note: async modules depend on aiohttp -aiodns>=4.0.4 +# Note: async modules depend on aiohttp. +# Note: aiodns's minimum Python rose in stages (>=3.9 at 3.3.0, >=3.10 at 4.0.0); cap each old interpreter at its last compatible release. +aiodns>1.0,<3.3; python_version < "3.9" +aiodns>1.0,<4; python_version == "3.9" +aiodns>=4.0.4; python_version >= "3.10" # aiohttp # We recommend using 3.7.1+ for RTMClient