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
bpo-36010: Add venv to the nuget distribution #12367
Conversation
Note: See the comment on bpo, but as it stands this PR does not achieve the desired effect of adding venv to the nuget package. |
PC/layout/support/options.py
Outdated
"stable", | ||
"distutils", | ||
"venv", | ||
"launchers", |
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.
I suspect we don't actually want this one. The original option was "launcher" (no "s"), which means it isn't including this.
IIRC, "launchers" is specific to the APPX package.
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.
Yeah, the include_launchers
option is only referenced in one place and looks like this:
if ns.include_launchers and ns.include_appxmanifest:
if ns.include_pip:
yield from in_build("python_uwp.exe", new_name="pip")
if ns.include_idle:
yield from in_build("pythonw_uwp.exe", new_name="idle")
So no need for it here
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.
Thanks, fixed.
Thanks, Paul! |
GH-12634 is a backport of this pull request to the 3.7 branch. |
(cherry picked from commit e724152) Co-authored-by: Paul Moore <p.f.moore@gmail.com>
Adds the venv standard library module to the nuget distribution.
https://bugs.python.org/issue36010