File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,14 @@ bzl_library(
54
54
deps = [":bazel_python_tools" ],
55
55
)
56
56
57
+ bzl_library (
58
+ name = "pip_install_bzl" ,
59
+ srcs = [
60
+ "//python/pip_install:pip_repository.bzl" ,
61
+ "//python/pip_install:repositories.bzl" ,
62
+ ],
63
+ )
64
+
57
65
stardoc (
58
66
name = "core-docs" ,
59
67
out = "python.md" ,
@@ -71,7 +79,7 @@ stardoc(
71
79
input = "//python:pip.bzl" ,
72
80
deps = [
73
81
":bazel_repo_tools" ,
74
- "//python/pip_install:bzl " ,
82
+ ":pip_install_bzl " ,
75
83
],
76
84
)
77
85
Original file line number Diff line number Diff line change 1
- load ("@bazel_skylib//:bzl_library.bzl" , "bzl_library" )
2
-
3
1
filegroup (
4
2
name = "distribution" ,
5
3
srcs = glob (["*.bzl" ]) + [
@@ -9,11 +7,7 @@ filegroup(
9
7
visibility = ["//:__pkg__" ],
10
8
)
11
9
12
- bzl_library (
13
- name = "bzl" ,
14
- srcs = [
15
- "pip_repository.bzl" ,
16
- "repositories.bzl" ,
17
- ],
10
+ exports_files (
11
+ ["pip_repository.bzl" , "repositories.bzl" ],
18
12
visibility = ["//docs:__pkg__" ],
19
13
)
You can’t perform that action at this time.
0 commit comments