File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ END_UNRELEASED_TEMPLATE
73
73
off use ` RULES_PYTHON_ENABLE_PIPSTAR=0 ` environment variable. If you do, please
74
74
add a comment to
75
75
[ #2949 ] ( https://github.com/bazel-contrib/rules_python/issues/2949 ) .
76
+ With this PR we are deprecating {obj}` pip.parse.experimental_target_platforms ` and
77
+ {obj}` pip_repository.experimental_target_platforms ` . It will be removed in the version.
76
78
77
79
{#v0-0-0-fixed}
78
80
### Fixed
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ bzl_library(
24
24
deps = [
25
25
"//python/private/pypi:package_annotation_bzl" ,
26
26
"//python/private/pypi:pip_repository_bzl" ,
27
- "//python/private/pypi:whl_config_library_bzl " ,
27
+ "//python/private/pypi:whl_config_repository_bzl " ,
28
28
"//python/private/pypi:whl_library_bzl" ,
29
29
],
30
30
)
Original file line number Diff line number Diff line change @@ -408,6 +408,15 @@ bzl_library(
408
408
],
409
409
)
410
410
411
+ bzl_library (
412
+ name = "whl_config_repository_bzl" ,
413
+ srcs = ["whl_config_repository.bzl" ],
414
+ deps = [
415
+ ":generate_group_library_build_bazel_bzl" ,
416
+ "//python/private:text_util_bzl" ,
417
+ ],
418
+ )
419
+
411
420
bzl_library (
412
421
name = "whl_config_setting_bzl" ,
413
422
srcs = ["whl_config_setting.bzl" ],
Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ Special values: `host` (for generating deps for the host platform only) and
152
152
153
153
NOTE: this is not for cross-compiling Python wheels but rather for parsing the `whl` METADATA correctly.
154
154
""" ,
155
+ deprecated = "Use pipstar instead of this feature" ,
155
156
),
156
157
"extra_hub_aliases" : attr .string_list_dict (
157
158
doc = """\
You can’t perform that action at this time.
0 commit comments