diff options
author | Steve Dower <steve.dower@python.org> | 2019-06-14 08:29:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-14 08:29:20 -0700 |
commit | 21a92f8cda525d25a165b773fbe1bfffd303a000 (patch) | |
tree | 84d08fcb306ee46d6f5147d734745af0c3f64b7b /PC/layout/support/options.py | |
parent | f0749da9a535375f05a2015e8960e8ae54877349 (diff) | |
download | cpython-git-21a92f8cda525d25a165b773fbe1bfffd303a000.tar.gz |
Implement Windows release builds in Azure Pipelines (GH-14065)
Diffstat (limited to 'PC/layout/support/options.py')
-rw-r--r-- | PC/layout/support/options.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/PC/layout/support/options.py b/PC/layout/support/options.py index 00f05667eb..c8ae4e30a8 100644 --- a/PC/layout/support/options.py +++ b/PC/layout/support/options.py @@ -30,6 +30,7 @@ OPTIONS = { "launchers": {"help": "specific launchers"}, "appxmanifest": {"help": "an appxmanifest"}, "props": {"help": "a python.props file"}, + "nuspec": {"help": "a python.nuspec file"}, "chm": {"help": "the CHM documentation"}, "html-doc": {"help": "the HTML documentation"}, } @@ -60,13 +61,11 @@ PRESETS = { "stable", "distutils", "venv", - "props" + "props", + "nuspec", ], }, - "iot": { - "help": "Windows IoT Core", - "options": ["stable", "pip"], - }, + "iot": {"help": "Windows IoT Core", "options": ["stable", "pip"]}, "default": { "help": "development kit package", "options": [ |