Skip to content

[2.7] bpo-36174: Update nuget authoring for new license field. (GH-12300) #12311

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

Merged
merged 1 commit into from
Mar 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Tools/nuget/make_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def include_in_tools(p):
('Lib/', 'Lib', '**/*', include_in_lib),
('libs/', 'PCBuild/$arch', '*.lib', include_in_libs),
('Tools/', 'Tools', '**/*', include_in_tools),
('/', '', 'LICENSE', None),
]

EMBED_LAYOUT = [
Expand Down
3 changes: 1 addition & 2 deletions Tools/nuget/python2.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
<title>Python 2.7</title>
<version>0.0.0.0</version>
<authors>Python Software Foundation</authors>
<licenseUrl>https://docs.python.org/2.7/license.html</licenseUrl>
<license type="file">tools\LICENSE</license>
<projectUrl>https://www.python.org/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Installs 64-bit Python 2.7 for use in build scenarios.</description>
<iconUrl>https://www.python.org/static/favicon.ico</iconUrl>
<tags>python</tags>
Expand Down
3 changes: 1 addition & 2 deletions Tools/nuget/python2x86.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
<title>Python 2.7 (32-bit)</title>
<authors>Python Software Foundation</authors>
<version>0.0.0.0</version>
<licenseUrl>https://docs.python.org/2.7/license.html</licenseUrl>
<license type="file">tools\LICENSE</license>
<projectUrl>https://www.python.org/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Installs 32-bit Python 2.7 for use in build scenarios.</description>
<iconUrl>https://www.python.org/static/favicon.ico</iconUrl>
<tags>python</tags>
Expand Down