aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathon Belotti <jonathon@canva.com>2021-10-15 10:36:35 +1100
committerGitHub <noreply@github.com>2021-10-15 10:36:35 +1100
commitcd5416e3b2702e7ff7d7564c2a9395344e9e724a (patch)
tree47cab7b1ee4883b3a437f24f59dba44eb8d081df
parent562ffc78581e12819b3509f05411a250f626ba2d (diff)
downloadbazelbuild-rules_python-cd5416e3b2702e7ff7d7564c2a9395344e9e724a.tar.gz
fix: rules_python 4.0.0 is not recent enough for pip_install example. latest 'main' commit is (#547)
-rw-r--r--examples/pip_install/WORKSPACE5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/pip_install/WORKSPACE b/examples/pip_install/WORKSPACE
index ce5333b..cd27303 100644
--- a/examples/pip_install/WORKSPACE
+++ b/examples/pip_install/WORKSPACE
@@ -13,8 +13,9 @@ http_archive(
http_archive(
name = "rules_python",
- sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea",
- url = "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz",
+ sha256 = "4ab93d2af38ecd5b3d9e1d70aaa20448de57ac8bd78d4c5e40b9be4139eebb50",
+ strip_prefix = "rules_python-8e2b6de3e7f434dd98a8d25403bd7fb45866eacc",
+ url = "https://github.com/bazelbuild/rules_python/archive/8e2b6de3e7f434dd98a8d25403bd7fb45866eacc.tar.gz",
)
load("@rules_python//python:pip.bzl", "pip_install")