From 0059b14026b948e33470cc0d349170a5cf6c36d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 06:17:59 +0000 Subject: [PATCH] build(deps-dev): update setuptools requirement in /bnf 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/v80.9.0...v80.10.2) --- updated-dependencies: - dependency-name: setuptools dependency-version: 80.10.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- bnf/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bnf/pyproject.toml b/bnf/pyproject.toml index 9f299ec..1034171 100644 --- a/bnf/pyproject.toml +++ b/bnf/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools~=80.9.0", + "setuptools>=80.9,<80.11", "setuptools-scm~=9.2.2", ] build-backend = "setuptools.build_meta"