use python 3.7 venv

This commit is contained in:
Akinwale Ariwodola 2019-07-07 16:58:13 +01:00
parent 01534caf13
commit 455dadd30d

View file

@ -600,9 +600,9 @@ def run_pymodules_install(ctx, modules):
venv = sh.Command(ctx.virtualenv) venv = sh.Command(ctx.virtualenv)
with current_directory(join(ctx.build_dir)): with current_directory(join(ctx.build_dir)):
shprint(venv, shprint(venv,
'--python=python{}'.format( '--python=python{}.{}'.format(
ctx.python_recipe.major_minor_version_string. ctx.python_recipe.major_minor_version_string.partition(".")[0],
partition(".")[0] ctx.python_recipe.major_minor_version_string.partition(".")[2]
), ),
'venv' 'venv'
) )