From e5224a7e86cfc52bd7e0e4bf162e681b8e8fbdf8 Mon Sep 17 00:00:00 2001 From: Joshua Harrison Date: Tue, 13 Oct 2020 22:07:21 -0600 Subject: [PATCH 1/2] Upgrade six to 1.15.0. --- protobuf_deps.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protobuf_deps.bzl b/protobuf_deps.bzl index a95008501b7f3..dd0350ac8995d 100644 --- a/protobuf_deps.bzl +++ b/protobuf_deps.bzl @@ -28,8 +28,8 @@ def protobuf_deps(): http_archive( name = "six", build_file = "@com_google_protobuf//:third_party/six.BUILD", - sha256 = "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73", - urls = ["https://pypi.python.org/packages/source/s/six/six-1.12.0.tar.gz"], + sha256 = "30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", + urls = ["https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz"], ) if not native.existing_rule("rules_cc"): From c4dcee4f00b4b53fba2e2f5dbecd81662c553e51 Mon Sep 17 00:00:00 2001 From: Joshua Harrison Date: Tue, 13 Oct 2020 22:08:49 -0600 Subject: [PATCH 2/2] Upgrade six to 1.15.0. --- protobuf_deps.bzl | 4 ++-- third_party/six.BUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protobuf_deps.bzl b/protobuf_deps.bzl index a95008501b7f3..dd0350ac8995d 100644 --- a/protobuf_deps.bzl +++ b/protobuf_deps.bzl @@ -28,8 +28,8 @@ def protobuf_deps(): http_archive( name = "six", build_file = "@com_google_protobuf//:third_party/six.BUILD", - sha256 = "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73", - urls = ["https://pypi.python.org/packages/source/s/six/six-1.12.0.tar.gz"], + sha256 = "30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", + urls = ["https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz"], ) if not native.existing_rule("rules_cc"): diff --git a/third_party/six.BUILD b/third_party/six.BUILD index 041c72c66ed2f..f41d95c3e9e87 100644 --- a/third_party/six.BUILD +++ b/third_party/six.BUILD @@ -6,7 +6,7 @@ load("@rules_python//python:defs.bzl", "py_library") # https://github.com/bazelbuild/bazel/issues/10076 genrule( name = "copy_six", - srcs = ["six-1.12.0/six.py"], + srcs = ["six-1.15.0/six.py"], outs = ["__init__.py"], cmd = "cp $< $(@)", )