From 8620e336c917b4c137527a8b03d3bcd108a99928 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 3 Oct 2023 15:42:33 -0400 Subject: [PATCH] fix a typo in tool.cibuildwheel.linux.environment Due to a bug in cibuildwheel (https://github.com/pypa/cibuildwheel/issues/1616), this typo didn't affect anything in previous cibuildwheel versions, but it got fixed... Signed-off-by: Jinzhe Zeng --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 17e710aa89..01f0f4810b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,7 @@ repair-wheel-command = """if [[ "$CIBW_BUILD" == *macosx_arm64* ]]; then rm -rf [tool.cibuildwheel.linux] repair-wheel-command = "auditwheel repair --exclude libtensorflow_framework.so.2 --exclude libtensorflow_framework.so.1 --exclude libtensorflow_framework.so --exclude _pywrap_tensorflow_internal.so --exclude libtensorflow_cc.so.2 -w {dest_dir} {wheel}" environment-pass = ["CIBW_BUILD", "DP_VARIANT"] -environment = { PIP_PREFER_BINARY="1", DP_VARIANT="cuda", DP_LAMMPS_VERSION="stable_2Aug2023_update1", DP_ENABLE_IPI="1", MPI_HOME="/usr/lib64/mpich", PATH="/usr/lib64/mpich/bin:$PATH" } +environment = { PIP_PREFER_BINARY="1", DP_LAMMPS_VERSION="stable_2Aug2023_update1", DP_ENABLE_IPI="1", MPI_HOME="/usr/lib64/mpich", PATH="/usr/lib64/mpich/bin:$PATH" } before-all = [ """{ if [ "$(uname -m)" = "x86_64" ] ; then yum config-manager --add-repo http://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo && yum install -y cuda-nvcc-11-8 cuda-cudart-devel-11-8; fi }""", "yum install -y mpich-devel",