Skip to content
Snippets Groups Projects
Commit 9e8aca15 authored by Ian Bell's avatar Ian Bell
Browse files

Force in-place build

parent 2a34b32f
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment