Skip to content

Commit 6322992

Browse files
committed
Fix minimal wheel smoke test
1 parent f074e3c commit 6322992

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.ci/scripts/test_minimal_wheel.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ python -m pip install --upgrade pip
7676
python -m pip install \
7777
"flatbuffers" \
7878
"numpy>=2.0.0" \
79+
"packaging" \
80+
"pyyaml" \
81+
"ruamel.yaml" \
7982
"sympy" \
83+
"tabulate" \
8084
"torch" \
8185
"torchvision" \
8286
"typing-extensions>=4.10.0" \

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def run(self): # noqa C901
880880
]
881881

882882
if minimal_build:
883-
cmake_build_args += ["--target", "flatc"]
883+
cmake_build_args += ["--target", "flatbuffers_ep"]
884884
elif cmake_cache.is_enabled("EXECUTORCH_BUILD_PYBIND"):
885885
cmake_build_args += ["--target", "portable_lib"]
886886
cmake_build_args += ["--target", "data_loader"]

0 commit comments

Comments
 (0)