From 6e14732bb5da92bdbaf0484c210ee60f6697afb8 Mon Sep 17 00:00:00 2001 From: Xavier Bonaventura Date: Thu, 20 Oct 2022 23:52:39 +0200 Subject: [PATCH] Bump rules_python to 0.11.0 This is needed in order to flip the disallow empty globs flag. --- WORKSPACE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 8bc9f32817..d1d841d578 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -2,9 +2,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "a3a6e99f497be089f81ec082882e40246bfd435f52f4e82f37e89449b04573f6", - strip_prefix = "rules_python-0.10.2", - url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.10.2.tar.gz", + sha256 = "c03246c11efd49266e8e41e12931090b613e12a59e6f55ba2efd29a7cb8b4258", + strip_prefix = "rules_python-0.11.0", + url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.11.0.tar.gz", ) load("@rules_python//python:pip.bzl", "pip_install")