use python 3.7 venv
This commit is contained in:
parent
01534caf13
commit
455dadd30d
1 changed files with 3 additions and 3 deletions
|
@ -600,9 +600,9 @@ def run_pymodules_install(ctx, modules):
|
|||
venv = sh.Command(ctx.virtualenv)
|
||||
with current_directory(join(ctx.build_dir)):
|
||||
shprint(venv,
|
||||
'--python=python{}'.format(
|
||||
ctx.python_recipe.major_minor_version_string.
|
||||
partition(".")[0]
|
||||
'--python=python{}.{}'.format(
|
||||
ctx.python_recipe.major_minor_version_string.partition(".")[0],
|
||||
ctx.python_recipe.major_minor_version_string.partition(".")[2]
|
||||
),
|
||||
'venv'
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue