From e01b1b47649b3b78da1ed11aa16fcf354d48576f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:43:08 +0000 Subject: [PATCH] Build(deps-dev): update cuda-python requirement from ==11.* to >=11,<14 Updates the requirements on [cuda-python](https://github.com/NVIDIA/cuda-python) to permit the latest version. - [Release notes](https://github.com/NVIDIA/cuda-python/releases) - [Commits](https://github.com/NVIDIA/cuda-python/commits/v13.3.1) --- updated-dependencies: - dependency-name: cuda-python dependency-version: 13.3.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 83af75c..4663268 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,19 +69,19 @@ dependencies = [ # repeat pattern for each Jetpack/CUDA version # Jetpack 5 / CUDA 11 cu11 = [ - "cuda-python==11.*", + "cuda-python>=11,<14", "tensorrt_cu11>=8.0.0", ] jp5 = [ - "cuda-python==11.*", + "cuda-python>=11,<14", ] # Jetpack 6 / CUDA 12 cu12 = [ - "cuda-python==12.*", + "cuda-python>=12,<14", "tensorrt_cu12>=10.0.0", ] jp6 = [ - "cuda-python==12.*", + "cuda-python>=12,<14", ] # Jetpack 7 / CUDA 13 cu13 = [