I'm facing an issue while trying to build tensorflow serving due to a recent update to workspace.bzl file in tensorflow project. The following is the error I face:
ERROR: /src/tensorflow/serving/WORKSPACE:26:1: file '@org_tensorflow//tensorflow:workspace.bzl' does not contain symbol 'check_version'.
ERROR: /src/tensorflow/serving/WORKSPACE:28:1: name 'check_version' is not defined.
ERROR: Error evaluating WORKSPACE file.
ERROR: error loading package 'external': Package 'external' contains errors.
Found the fix. Only had to change the check_version function to check_bazel_version_at_least in the WORKSPACE file.
Most helpful comment
Found the fix. Only had to change the check_version function to check_bazel_version_at_least in the WORKSPACE file.