From 22464a5090d7c340ad4dead7c18a36874442bb7c Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Sun, 15 May 2022 06:49:48 -0700 Subject: [PATCH] Backport PR #47015: CI: Ensure no-use-pep517 with no-build-isolation with new pip version --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index 483353cfcb3cd..80448319f7918 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -104,6 +104,6 @@ echo "Build extensions" python setup.py build_ext -q -j3 echo "Install pandas" -python -m pip install --no-build-isolation -e . +python -m pip install --no-build-isolation --no-use-pep517 -e . echo "done"