Relax Bazel maximum version check.

Remove debug print from lax_numpy_test.py.
This commit is contained in:
Peter Hawkins 2019-05-29 19:38:55 -04:00
parent c65ccda374
commit fafe69bd8f
2 changed files with 1 additions and 3 deletions

View File

@ -289,7 +289,7 @@ def main():
# Find a working Bazel.
bazel_path = get_bazel_path(args.bazel_path)
check_bazel_version(bazel_path, min_version="0.24.0", max_version="0.25.0")
check_bazel_version(bazel_path, min_version="0.24.0", max_version=None)
print("Bazel binary path: {}".format(bazel_path))
python_bin_path = get_python_bin_path(args.python_bin_path)

View File

@ -1586,8 +1586,6 @@ class LaxBackedNumpyTests(jtu.JaxTestCase):
x = dtype(x)
expected = onp_op(x)
actual = lnp_op(x)
if expected != actual:
print(x, expected, actual)
self.assertAllClose(expected, actual, check_dtypes=True)