Skip to content

[doc-only] fix: remove unrelated Database classifier from cuda-bindings metadata - #2612

Open
andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:bugfix/pyproject-remove-unrelated-database-classifier
Open

[doc-only] fix: remove unrelated Database classifier from cuda-bindings metadata#2612
andrewwhitecdw wants to merge 1 commit into
NVIDIA:mainfrom
andrewwhitecdw:bugfix/pyproject-remove-unrelated-database-classifier

Conversation

@andrewwhitecdw

Copy link
Copy Markdown

This PR addresses the following issue in cuda_bindings/pyproject.toml: remove unrelated Database classifier from cuda-bindings metadata.

Changes

  • cuda_bindings/pyproject.toml: remove unrelated Database classifier from cuda-bindings metadata.

Details

--- a/cuda_bindings/pyproject.toml
+++ b/cuda_bindings/pyproject.toml
@@ -1,3 +1,2 @@
-    "Intended Audience :: Developers",
-    "Topic :: Database",
-    "Topic :: Scientific/Engineering",
+    "Intended Audience :: Developers",
+    "Topic :: Scientific/Engineering",

Tests

  • cuda_bindings/tests/test_metadata.py
diff --git a/cuda_bindings/tests/test_metadata.py b/cuda_bindings/tests/test_metadata.py
new file mode 100644
--- /dev/null
+++ b/cuda_bindings/tests/test_metadata.py
@@ -0,0 +1,13 @@
+# SPDX-FileCopyrightText: Copyright (c) 2023-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
+# SPDX-License-Identifier: Apache-2.0
+import pathlib
+import re
+
+
+def test_no_database_classifier():
+    pyproject = pathlib.Path(__file__).resolve().parents[1] / "pyproject.toml"
+    content = pyproject.read_text()
+    match = re.search(r"classifiers\s*=\s*\[(.*?)\]", content, re.DOTALL)
+    assert match is not None
+    classifiers_block = match.group(1)
+    assert '"Topic :: Database"' not in classifiers_block

Contributor guidelines

Per this repo's CONTRIBUTING.md:

  • All commits are signed off (Signed-off-by trailer, DCO).

Signed-off-by: andrewwhitecdw <andrewwhitecdw@users.noreply.github.com>
@copy-pr-bot

copy-pr-bot Bot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@github-actions github-actions Bot added the cuda.bindings Everything related to the cuda.bindings module label Aug 13, 2026
@mdboom mdboom changed the title fix: remove unrelated Database classifier from cuda-bindings metadata [doc-only] fix: remove unrelated Database classifier from cuda-bindings metadata Aug 14, 2026
@mdboom mdboom self-assigned this Aug 14, 2026
@mdboom mdboom added documentation Improvements or additions to documentation P2 Low priority - Nice to have labels Aug 14, 2026
@mdboom mdboom added this to the cuda.bindings next milestone Aug 14, 2026
@mdboom

mdboom commented Aug 14, 2026

Copy link
Copy Markdown
Contributor

/ok to test dd2b216

@mdboom
mdboom enabled auto-merge (squash) August 14, 2026 15:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cuda.bindings Everything related to the cuda.bindings module documentation Improvements or additions to documentation P2 Low priority - Nice to have

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants