From 4a57824ea5dcf56595d9e95f6e3995ac575c69a6 Mon Sep 17 00:00:00 2001 From: Yashas Ambati Date: Wed, 19 Feb 2025 23:16:20 -0500 Subject: [PATCH] Install dependencies in manylinux container as well --- build_tools/wheels/cibw_before_all.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_tools/wheels/cibw_before_all.sh b/build_tools/wheels/cibw_before_all.sh index 72f87d626..d37db829f 100644 --- a/build_tools/wheels/cibw_before_all.sh +++ b/build_tools/wheels/cibw_before_all.sh @@ -8,6 +8,9 @@ PROJECT_DIR="$2" export PYTHON="python${PYTHON_VERSION}" +sudo apt-get install -y wget libicu-dev python3-pip python3-setuptools libboost-all-dev ninja-build +python -m pip install -r $PROJECT_DIR/python/dev_requirements.txt + rm -rf $PROJECT_DIR/build export CMAKE_GENERATOR=Ninja