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
6161
6262{#v0-0-0-changed}
6363### 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 ) ).
6566
6667{#v0-0-0-fixed}
6768### Fixed
Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ settings for rules to later use.
2020
2121load (":repo_utils.bzl" , "repo_utils" )
2222
23+ _BZLMOD_ENABLED = "@@" in str (Label ("//:unused" ))
2324_ENABLE_PIPSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PIPSTAR"
24- _ENABLE_PIPSTAR_DEFAULT = "0"
25+ _ENABLE_PIPSTAR_DEFAULT = "1" if _BZLMOD_ENABLED else " 0"
2526_ENABLE_PYSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PYSTAR"
2627_ENABLE_PYSTAR_DEFAULT = "1"
2728_ENABLE_DEPRECATION_WARNINGS_ENVVAR_NAME = "RULES_PYTHON_DEPRECATION_WARNINGS"
You can’t perform that action at this time.
0 commit comments