From 10f5bd64c7db5fc2052e299d6b02cb0ee801ee24 Mon Sep 17 00:00:00 2001 From: Carey Li Date: Mon, 29 Jul 2019 14:53:53 +0000 Subject: [PATCH] Hacky workaround to force python3 --- python/pip.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pip.bzl b/python/pip.bzl index 2449ee7a3c..ca5b5293ce 100644 --- a/python/pip.bzl +++ b/python/pip.bzl @@ -24,7 +24,7 @@ def _pip_import_impl(repository_ctx): # To see the output, pass: quiet=False result = repository_ctx.execute([ - "python", + "python3", repository_ctx.path(repository_ctx.attr._script), "--name", repository_ctx.attr.name,