From 6dee8a2565a4451c0d27de3c83f95ab6514fb3f9 Mon Sep 17 00:00:00 2001 From: Edmund Higham Date: Wed, 11 Dec 2024 10:24:22 -0500 Subject: [PATCH] [query] Exclude `benchmark/` from hail wheel (#14764) ## Change Description This change prevents packaging benchmark code in the hail wheel by updating the rsync exclude patterns in `hail/Makefile` to exclude `benchmark/`. ## Security Assessment This change has no security impact ### Impact Description Low-level build configuration change that only affects which directories are excluded during file copying operations. --- hail/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hail/Makefile b/hail/Makefile index 516eeef08ae..c4d4846efc8 100644 --- a/hail/Makefile +++ b/hail/Makefile @@ -266,10 +266,10 @@ copy-py-files: $(PYTHON_VERSION_INFO) $(INIT_SCRIPTS) $(PY_FILES) $(PYTHON_JAR) cp ../README.md build/deploy/ rsync -r \ --exclude '.eggs/' \ + --exclude '.mypy_cache/' \ --exclude '.pytest_cache/' \ --exclude '__pycache__/' \ - --exclude 'benchmark_hail/' \ - --exclude '.mypy_cache/' \ + --exclude 'benchmark/' \ --exclude 'docs/' \ --exclude 'dist/' \ --exclude 'test/' \