From c199c6825b4908e1542c4cc46536ca7ec5084018 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 10:54:49 +0200 Subject: [PATCH] deps: update dependency rules_python to v0.23.1 (#2047) * deps: update dependency rules_python to v0.23.1 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Malte Poll --- bazel/toolchains/python_deps.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bazel/toolchains/python_deps.bzl b/bazel/toolchains/python_deps.bzl index 4a7877000..81ee13740 100644 --- a/bazel/toolchains/python_deps.bzl +++ b/bazel/toolchains/python_deps.bzl @@ -5,11 +5,11 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") def python_deps(): http_archive( name = "rules_python", - sha256 = "94750828b18044533e98a129003b6a68001204038dc4749f40b195b24c38f49f", - strip_prefix = "rules_python-0.21.0", + strip_prefix = "rules_python-0.23.1", urls = [ - "https://cdn.confidential.cloud/constellation/cas/sha256/94750828b18044533e98a129003b6a68001204038dc4749f40b195b24c38f49f", - "https://github.com/bazelbuild/rules_python/releases/download/0.21.0/rules_python-0.21.0.tar.gz", + "https://cdn.confidential.cloud/constellation/cas/sha256/84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", + "https://github.com/bazelbuild/rules_python/releases/download/0.23.1/rules_python-0.23.1.tar.gz", ], type = "tar.gz", + sha256 = "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841", )