Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .spdx-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ LICENSE
requirements*.txt
cuda_bindings/examples/*

# Will be moved in (see https://github.com/NVIDIA/cuda-python/pull/1913#issuecomment-4252968149)
cuda_bindings/benchmarks/*

# Vendored
cuda_core/cuda/core/_include/dlpack.h

Expand Down
2 changes: 1 addition & 1 deletion cuda_bindings/pixi.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

[workspace]
channels = ["conda-forge"]
Expand Down
7 changes: 6 additions & 1 deletion toolshed/check_spdx.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@

LICENSE_IDENTIFIER_REGEX = re.compile(re.escape(SPDX_LICENSE_IDENTIFIER_PREFIX) + rb"(?P<license_identifier>[^\r\n]+)")

EXPECTED_LICENSE_IDENTIFIERS = (("cuda_core/", "Apache-2.0"),)
EXPECTED_LICENSE_IDENTIFIERS = (
("cuda_bindings/", "LicenseRef-NVIDIA-SOFTWARE-LICENSE"),
("cuda_core/", "Apache-2.0"),
("cuda_pathfinder/", "Apache-2.0"),
("cuda_python/", "LicenseRef-NVIDIA-SOFTWARE-LICENSE"),
)

SPDX_IGNORE_FILENAME = ".spdx-ignore"

Expand Down
Loading