From 5bd12a52cd5c82b3437acbbb7baf9a8ef1a5c8da Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 6 Feb 2024 17:39:58 -0800 Subject: [PATCH] Exclude tests from builds (#2162) --- python/pylibraft/pyproject.toml | 1 + python/raft-dask/pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/python/pylibraft/pyproject.toml b/python/pylibraft/pyproject.toml index 8a81061478..c2ae88fa35 100644 --- a/python/pylibraft/pyproject.toml +++ b/python/pylibraft/pyproject.toml @@ -107,6 +107,7 @@ build-dir = "build/{wheel_tag}" cmake.build-type = "Release" cmake.minimum-version = "3.26.4" ninja.make-fallback = true +sdist.exclude = ["*tests*"] sdist.reproducible = true wheel.packages = ["pylibraft"] diff --git a/python/raft-dask/pyproject.toml b/python/raft-dask/pyproject.toml index 7c37ae9c06..8706cd22a0 100644 --- a/python/raft-dask/pyproject.toml +++ b/python/raft-dask/pyproject.toml @@ -107,6 +107,7 @@ build-dir = "build/{wheel_tag}" cmake.build-type = "Release" cmake.minimum-version = "3.26.4" ninja.make-fallback = true +sdist.exclude = ["*tests*"] sdist.reproducible = true wheel.packages = ["raft_dask"]