fix(sphinxdocs): use Label in the readthedocs_install macro (#2080)
This just makes it possible to use the macro outside `rules_python`.
Not adding anything to the CHANGELOG as this is not a documented
API.
diff --git a/sphinxdocs/private/readthedocs.bzl b/sphinxdocs/private/readthedocs.bzl
index 3cab75b..ee8e7aa 100644
--- a/sphinxdocs/private/readthedocs.bzl
+++ b/sphinxdocs/private/readthedocs.bzl
@@ -43,6 +43,6 @@
"$(rlocationpaths {})".format(d)
for d in docs
],
- deps = ["//python/runfiles"],
+ deps = [Label("//python/runfiles")],
**kwargs
)