From 9e8aca15c16c34c2d73f8c57fcf75aef73443c5f Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Thu, 16 Sep 2021 19:28:49 -0400 Subject: [PATCH] Force in-place build --- buildwheels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildwheels.py b/buildwheels.py index 80f777b..49188ae 100644 --- a/buildwheels.py +++ b/buildwheels.py @@ -28,7 +28,7 @@ for pyver in ['3.7','3.8','3.9']: subprocess.check_call(f'conda create -y -n {condaenv} python={pyver}', shell=True) subprocess.check_call(f'conda activate {condaenv} && python -m pip install -U pip wheel', shell=True) try: - subprocess.check_call(f'conda activate {condaenv} && python -m pip -vvv wheel .', shell=True) + subprocess.check_call(f'conda activate {condaenv} && python -m pip -vvv --use-feature=in-tree-build wheel .', shell=True) except: pass finally: -- GitLab