From f8e7a646e22894e3d182fd2460db4a1761ff198e Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Fri, 16 Aug 2024 16:26:45 -0400 Subject: [PATCH] Restore `*.pxd` files in ucxx wheel (#270) `*.pxd` files were mistakenly removed in https://github.com/rapidsai/ucxx/pull/260. Resume installing them in the ucxx wheel. Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/ucxx/pull/270 --- python/ucxx/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ucxx/pyproject.toml b/python/ucxx/pyproject.toml index 0c07b5a5..4bf1eab2 100644 --- a/python/ucxx/pyproject.toml +++ b/python/ucxx/pyproject.toml @@ -73,7 +73,7 @@ ninja.make-fallback = true sdist.exclude = ["*tests*"] sdist.reproducible = true wheel.packages = ["ucxx"] -wheel.exclude = ["*.pyx", "*.pxd", "CMakeLists.txt"] +wheel.exclude = ["*.pyx", "CMakeLists.txt"] [tool.scikit-build.metadata.version] provider = "scikit_build_core.metadata.regex"