From 35bb9f0092f71ea56b742a520602da9b3638a24f Mon Sep 17 00:00:00 2001 From: Jon Brandvein Date: Tue, 14 May 2019 15:59:21 -0400 Subject: [PATCH] Add note on bazel version compatibility to WORKSPACE (#107) This will be useful to keep up-to-date for documentation purposes, and so we know when a release cut breaks compatibility with Bazel and therefore needs to be a major release. --- WORKSPACE | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/WORKSPACE b/WORKSPACE index 09df09f..0ddafb5 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,5 +1,13 @@ workspace(name = "subpar") +# These version vars aren't consumed by anything but are good to know for +# documentation / compatibility purposes. +# +# Because of use of `PyInfo` provider. +MIN_BAZEL_VERSION = "0.23.0" +# Because tests require --incompatible_use_python_toolchains. +MIN_BAZEL_VERSION_FOR_TESTS = "0.25.0" + # Used by integration tests local_repository( name = "test_workspace",