From 240fbb78b2a7746a3ad026070cd5e5d6deaaa337 Mon Sep 17 00:00:00 2001 From: Vladislav Zhurba Date: Fri, 8 Nov 2024 16:28:13 -0800 Subject: [PATCH] Fix discovery for trampoline files --- cuda_bindings/MANIFEST.in | 2 +- cuda_bindings/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cuda_bindings/MANIFEST.in b/cuda_bindings/MANIFEST.in index ef9def92..88bab329 100644 --- a/cuda_bindings/MANIFEST.in +++ b/cuda_bindings/MANIFEST.in @@ -1,4 +1,4 @@ recursive-include cuda/ *.pyx *.pxd # at least with setuptools 75.0.0 this folder was added erroneously # to the payload, causing file copying to the build environment failed -exclude cuda/bindings +exclude cuda/bindings cuda?bindings diff --git a/cuda_bindings/pyproject.toml b/cuda_bindings/pyproject.toml index 4a405c32..63c09db5 100644 --- a/cuda_bindings/pyproject.toml +++ b/cuda_bindings/pyproject.toml @@ -37,7 +37,7 @@ Repository = "https://github.com/NVIDIA/cuda-python" Documentation = "https://nvidia.github.io/cuda-python/" [tool.setuptools.packages.find] -include = ["cuda.bindings*"] +include = ["cuda*"] [tool.versioneer] VCS = "git"