# HG changeset patch # User Gregory Szorc # Date 2020-10-09 16:46:03 # Node ID 64a9423450efb39d7f1bc5b6b2cca1efafb1870e # Parent 9934920af5f7252fb635fcfeb69819a4a8565e53 automation: support running against Python 3.9 We just added CPython 3.9.0 to the automation environment. Let's support actions targeting it. One side-effect of this change is that we'll produce Windows wheels for Python 3.9 by default. This is desirable. Differential Revision: https://phab.mercurial-scm.org/D9189 diff --git a/contrib/automation/hgautomation/cli.py b/contrib/automation/hgautomation/cli.py --- a/contrib/automation/hgautomation/cli.py +++ b/contrib/automation/hgautomation/cli.py @@ -158,7 +158,7 @@ def build_all_windows_packages( windows.synchronize_hg(SOURCE_ROOT, revision, instance) - for py_version in ("2.7", "3.7", "3.8"): + for py_version in ("2.7", "3.7", "3.8", "3.9"): for arch in ("x86", "x64"): windows.purge_hg(winrm_client) windows.build_wheel( @@ -364,7 +364,7 @@ def get_parser(): sp.add_argument( '--python-version', help='Python version to build for', - choices={'2.7', '3.7', '3.8'}, + choices={'2.7', '3.7', '3.8', '3.9'}, nargs='*', default=['3.8'], ) @@ -476,7 +476,7 @@ def get_parser(): sp.add_argument( '--python-version', help='Python version to use', - choices={'2.7', '3.5', '3.6', '3.7', '3.8'}, + choices={'2.7', '3.5', '3.6', '3.7', '3.8', '3.9'}, default='2.7', ) sp.add_argument(