File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ END_UNRELEASED_TEMPLATE
61
61
62
62
{#v0-0-0-changed}
63
63
### Changed
64
- * Nothing changed.
64
+ * (pypi) ` pipstar ` flag has been flipped to be enabled by default for bzlmod
65
+ ([ #2949 ] ( https://github.com/bazel-contrib/rules_python/issues/2949 ) ).
65
66
66
67
{#v0-0-0-fixed}
67
68
### Fixed
Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ settings for rules to later use.
20
20
21
21
load (":repo_utils.bzl" , "repo_utils" )
22
22
23
+ _BZLMOD_ENABLED = "@@" in str (Label ("//:unused" ))
23
24
_ENABLE_PIPSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PIPSTAR"
24
- _ENABLE_PIPSTAR_DEFAULT = "0"
25
+ _ENABLE_PIPSTAR_DEFAULT = "1" if _BZLMOD_ENABLED else " 0"
25
26
_ENABLE_PYSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PYSTAR"
26
27
_ENABLE_PYSTAR_DEFAULT = "1"
27
28
_ENABLE_DEPRECATION_WARNINGS_ENVVAR_NAME = "RULES_PYTHON_DEPRECATION_WARNINGS"
You can’t perform that action at this time.
0 commit comments