From 174663b65f40dd92314c3bde460ad27fa650fb35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 07:41:40 +0000 Subject: [PATCH] Update nanobind requirement from >=1.9.2 to >=2.12.0 Updates the requirements on [nanobind](https://github.com/wjakob/nanobind) to permit the latest version. - [Changelog](https://github.com/wjakob/nanobind/blob/master/docs/changelog.rst) - [Commits](https://github.com/wjakob/nanobind/compare/v1.9.2...v2.12.0) --- updated-dependencies: - dependency-name: nanobind dependency-version: 2.12.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d95a9c4a8..05cf96501 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ dynamic = ["classifiers", "optional-dependencies"] dependencies = [ "setuptools >= 61.0", - "nanobind >= 1.9.2", + "nanobind >= 2.12.0", "pyyaml >= 6.0.1", "matplotlib >= 3.9.0; 'Windows' not in platform_system", "black >= 24.4.2", @@ -21,5 +21,5 @@ dependencies = [ ] [build-system] -requires = ["setuptools >= 61.0", "nanobind >= 1.9.2"] +requires = ["setuptools >= 61.0", "nanobind >= 2.12.0"] build-backend = "setuptools.build_meta"