File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def _internal_dev_deps_impl(mctx):
40
40
name = "somepkg_with_build_files" ,
41
41
whl_file = "@whl_with_build_files//:somepkg-1.0-any-none-any.whl" ,
42
42
requirement = "somepkg" ,
43
+ dep_template = "@rules_python//tests/support:support.bzl" ,
43
44
)
44
45
45
46
# Setup for //tests/implicit_namespace_packages
@@ -53,6 +54,7 @@ def _internal_dev_deps_impl(mctx):
53
54
whl_file = "@implicit_namespace_ns_sub1_whl//:ns_sub1-1.0-any-none-any.whl" ,
54
55
requirement = "ns-sub1" ,
55
56
enable_implicit_namespace_pkgs = False ,
57
+ dep_template = "@rules_python//tests/support:support.bzl" ,
56
58
)
57
59
58
60
whl_from_dir_repo (
@@ -65,6 +67,7 @@ def _internal_dev_deps_impl(mctx):
65
67
whl_file = "@implicit_namespace_ns_sub2_whl//:ns_sub2-1.0-any-none-any.whl" ,
66
68
requirement = "ns-sub2" ,
67
69
enable_implicit_namespace_pkgs = False ,
70
+ dep_template = "@rules_python//tests/support:support.bzl" ,
68
71
)
69
72
70
73
internal_dev_deps = module_extension (
Original file line number Diff line number Diff line change 22
22
load ("//python/private:bzlmod_enabled.bzl" , "BZLMOD_ENABLED" ) # buildifier: disable=bzl-visibility
23
23
load ("//python/private:util.bzl" , "IS_BAZEL_7_OR_HIGHER" ) # buildifier: disable=bzl-visibility
24
24
25
+ # this is used in integration tests with `whl_library`
26
+ whl_map = []
27
+
25
28
MAC = Label ("//tests/support:mac" )
26
29
MAC_X86_64 = Label ("//tests/support:mac_x86_64" )
27
30
LINUX = Label ("//tests/support:linux" )
You can’t perform that action at this time.
0 commit comments