Skip to content

Commit 0054d0f

Browse files
committed
feat: flip pipstar to be on by default
1 parent 4558ffb commit 0054d0f

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ END_UNRELEASED_TEMPLATE
8181
* (pip) `pipstar` has been enabled for all `whl_library` instances where the whl
8282
is passed through a label or downloaded using the bazel downloader
8383
([#2949](https://github.com/bazel-contrib/rules_python/issues/2949)).
84+
* (pypi) `pipstar` flag default has been flipped to be on by default.
85+
It can be disabled through `RULES_PYTHON_ENABLE_PIPSTAR=0` environment variable.
86+
If you do need to disable it, please add a comment to
87+
[#2949](https://github.com/bazel-contrib/rules_python/issues/2949).
8488
* (gazelle deps) rules_go bumped from 0.55.1 to 0.59.0
8589
* (gazelle deps) gazelle bumped from 0.36.0 to 0.47.0
8690

python/private/internal_config_repo.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ load("//python/private:text_util.bzl", "render")
2222
load(":repo_utils.bzl", "repo_utils")
2323

2424
_ENABLE_PIPSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PIPSTAR"
25-
_ENABLE_PIPSTAR_DEFAULT = "0"
25+
_ENABLE_PIPSTAR_DEFAULT = "1"
2626
_ENABLE_DEPRECATION_WARNINGS_ENVVAR_NAME = "RULES_PYTHON_DEPRECATION_WARNINGS"
2727
_ENABLE_DEPRECATION_WARNINGS_DEFAULT = "0"
2828

0 commit comments

Comments
 (0)