Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e7241527
Commit
e7241527
authored
Mar 30, 2019
by
Paul Moore
Committed by
Steve Dower
Mar 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36010: Add venv to the nuget distribution (GH-12367)
parent
e653d4d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
Misc/NEWS.d/next/Windows/2019-03-16-10-24-58.bpo-36010.dttWfp.rst
...S.d/next/Windows/2019-03-16-10-24-58.bpo-36010.dttWfp.rst
+1
-0
PC/layout/support/options.py
PC/layout/support/options.py
+9
-1
Tools/nuget/make_pkg.proj
Tools/nuget/make_pkg.proj
+1
-1
No files found.
Misc/NEWS.d/next/Windows/2019-03-16-10-24-58.bpo-36010.dttWfp.rst
0 → 100644
View file @
e7241527
Add the venv standard library module to the nuget distribution for Windows.
\ No newline at end of file
PC/layout/support/options.py
View file @
e7241527
...
...
@@ -53,7 +53,15 @@ PRESETS = {
},
"nuget"
:
{
"help"
:
"nuget package"
,
"options"
:
[
"stable"
,
"pip"
,
"distutils"
,
"dev"
,
"props"
],
"options"
:
[
"dev"
,
"tools"
,
"pip"
,
"stable"
,
"distutils"
,
"venv"
,
"props"
],
},
"default"
:
{
"help"
:
"development kit package"
,
...
...
Tools/nuget/make_pkg.proj
View file @
e7241527
...
...
@@ -28,7 +28,7 @@
<PythonArguments>
$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"
</PythonArguments>
<PythonArguments>
$(PythonArguments) -t "$(IntermediateOutputPath)obj"
</PythonArguments>
<PythonArguments>
$(PythonArguments) --copy "$(IntermediateOutputPath)pkg"
</PythonArguments>
<PythonArguments>
$(PythonArguments) --
include-dev --include-tools --include-pip --include-stable --include-launcher --include-props
</PythonArguments>
<PythonArguments>
$(PythonArguments) --
preset-nuget
</PythonArguments>
<PackageArguments
Condition=
"$(Packages) != ''"
>
"$(IntermediateOutputPath)pkg\pip.exe" -B -m pip install -U $(Packages)
</PackageArguments>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment