-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-103646: Remove --include-pip-user from default APPX package build #105064
Conversation
zooba
commented
May 29, 2023
•
edited by bedevere-bot
Loading
edited by bedevere-bot
- Issue: Windows Store installation of Python adds a pip.ini file which configures --user #103646
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it not possible to completely remove the "pip-user" option? As far as I can see, it's only used in get_pip_layout
in PC\layout\support\pip.py
. Having the option present but never used seems like a potential source of confusion.
Deprecating and removing a command line option is a bigger change than just changing a preset, since the presets are deliberately unspecified. I doubt anyone is actually using it, but I see no reason to find out by simply removing it. There are potentially useful scenarios that might be using it where they wouldn't be covered by the unwritable-Lib fallback (I know of one such scenario, though I don't know that they're actively using this option). |
Thanks @zooba for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…build (pythonGH-105064) (cherry picked from commit 6da7015) Co-authored-by: Steve Dower <steve.dower@python.org>
GH-105065 is a backport of this pull request to the 3.12 branch. |
Want to make sure this is in for 3.12.0b2 tomorrow, but we can look at cleaning up unused options later. |