From b2a190832cb66230e128c476a86c4ba9aa6c479f Mon Sep 17 00:00:00 2001 From: Jingwen Chen Date: Fri, 12 Jan 2018 18:42:22 -0500 Subject: Use versions module from Skylib for version checking --- protobuf.bzl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'protobuf.bzl') diff --git a/protobuf.bzl b/protobuf.bzl index 6aed44a4..9e2600fb 100644 --- a/protobuf.bzl +++ b/protobuf.bzl @@ -1,3 +1,5 @@ +load("@bazel_skylib//:lib.bzl", "versions") + def _GetPath(ctx, path): if ctx.label.workspace_root: return ctx.label.workspace_root + '/' + path @@ -408,7 +410,4 @@ def check_protobuf_required_bazel_version(): This ensures bazel supports our approach to proto_library() depending on a copied filegroup. (Fixed in bazel 0.5.4) """ - expected = apple_common.dotted_version("0.5.4") - current = apple_common.dotted_version(native.bazel_version) - if current.compare_to(expected) < 0: - fail("Bazel must be newer than 0.5.4") + versions.check(minimum_bazel_version = "0.5.4") -- cgit v1.2.3