Skip to content

Commit

Permalink
Fix Lint in setup.py (ray-project#9618)
Browse files Browse the repository at this point in the history
Co-authored-by: Mehrdad <[email protected]>
  • Loading branch information
mehrdadn and web-flow authored Jul 21, 2020
1 parent c5cde65 commit a2f3119
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ def build(build_python, build_java):
bazel_version_str = version_info.rstrip().decode("utf-8").split(" ", 1)[1]
bazel_version = tuple(map(int, bazel_version_str.split(".")))
if bazel_version <= SUPPORTED_BAZEL:
logger.warning("Expected Bazel version {} but found {}",
bazel_version, SUPPORTED_BAZEL)
logger.warning("Expected Bazel version {} but found {}", bazel_version,
SUPPORTED_BAZEL)

bazel_targets = []
bazel_targets += ["//:ray_pkg"] if build_python else []
Expand Down

0 comments on commit a2f3119

Please sign in to comment.