From 013cda6db7f97da02284cc681352e056e95e71aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 05:34:51 +0000 Subject: [PATCH 1/2] Update setuptools requirement in /Python/rdmulti Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v82.0.1...v83.0.0) --- updated-dependencies: - dependency-name: setuptools dependency-version: 83.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- Python/rdmulti/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/rdmulti/pyproject.toml b/Python/rdmulti/pyproject.toml index f6413b5..97f241a 100644 --- a/Python/rdmulti/pyproject.toml +++ b/Python/rdmulti/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools>=82.0.1", + "setuptools>=83.0.0", "wheel" ] build-backend = "setuptools.build_meta" From dc426d766cb7ff0b7758e4094485971b7c8d96d4 Mon Sep 17 00:00:00 2001 From: "Matias D. Cattaneo" Date: Fri, 10 Jul 2026 07:23:56 -0400 Subject: [PATCH 2/2] Keep setuptools 83 update compatible with Python 3.9 --- Python/rdmulti/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/rdmulti/pyproject.toml b/Python/rdmulti/pyproject.toml index 97f241a..98040e5 100644 --- a/Python/rdmulti/pyproject.toml +++ b/Python/rdmulti/pyproject.toml @@ -1,6 +1,7 @@ [build-system] requires = [ - "setuptools>=83.0.0", + "setuptools>=82.0.1,<83.0.0; python_version < '3.10'", + "setuptools>=83.0.0; python_version >= '3.10'", "wheel" ] build-backend = "setuptools.build_meta"