def setup_venv(ctx, kwds): create_template_params = {"create_virtualenv": create_command("$GALAXY_VIRTUAL_ENV")} return shell_join( locate_galaxy_virtualenv(ctx, kwds), PRINT_VENV_COMMAND if ctx.verbose else None, CREATE_COMMAND_TEMPLATE.safe_substitute(create_template_params), PRINT_VENV_COMMAND if ctx.verbose else None, ACTIVATE_COMMAND, )
def setup_venv(ctx, kwds): if kwds.get("skip_venv", False): return "" create_template_params = { 'create_virtualenv': create_command("$GALAXY_VIRTUAL_ENV", kwds.get('galaxy_python_version')) } return shell_join( locate_galaxy_virtualenv(ctx, kwds), PRINT_VENV_COMMAND if ctx.verbose else None, CREATE_COMMAND_TEMPLATE.safe_substitute(create_template_params), PRINT_VENV_COMMAND if ctx.verbose else None, ACTIVATE_COMMAND, )