##// END OF EJS Templates
automation: support running against Python 3.9...
Gregory Szorc -
r46285:64a94234 default
parent child Browse files
Show More
@@ -158,7 +158,7 b' def build_all_windows_packages('
158 158
159 159 windows.synchronize_hg(SOURCE_ROOT, revision, instance)
160 160
161 for py_version in ("2.7", "3.7", "3.8"):
161 for py_version in ("2.7", "3.7", "3.8", "3.9"):
162 162 for arch in ("x86", "x64"):
163 163 windows.purge_hg(winrm_client)
164 164 windows.build_wheel(
@@ -364,7 +364,7 b' def get_parser():'
364 364 sp.add_argument(
365 365 '--python-version',
366 366 help='Python version to build for',
367 choices={'2.7', '3.7', '3.8'},
367 choices={'2.7', '3.7', '3.8', '3.9'},
368 368 nargs='*',
369 369 default=['3.8'],
370 370 )
@@ -476,7 +476,7 b' def get_parser():'
476 476 sp.add_argument(
477 477 '--python-version',
478 478 help='Python version to use',
479 choices={'2.7', '3.5', '3.6', '3.7', '3.8'},
479 choices={'2.7', '3.5', '3.6', '3.7', '3.8', '3.9'},
480 480 default='2.7',
481 481 )
482 482 sp.add_argument(
General Comments 0
You need to be logged in to leave comments. Login now