We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a8cb8 commit f746b2dCopy full SHA for f746b2d
third_party/xla/xla/strict.default.bzl
@@ -0,0 +1,13 @@
1
+"""Default (OSS) build versions of Python strict rules."""
2
+
3
+# Placeholder to use until bazel supports py_strict_binary.
4
+def py_strict_binary(name, **kwargs):
5
+ native.py_binary(name = name, **kwargs)
6
7
+# Placeholder to use until bazel supports py_strict_library.
8
+def py_strict_library(name, **kwargs):
9
+ native.py_library(name = name, **kwargs)
10
11
+# Placeholder to use until bazel supports py_strict_test.
12
+def py_strict_test(name, **kwargs):
13
+ native.py_test(name = name, **kwargs)
0 commit comments