bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)

(cherry picked from commit daf6262751)

Co-authored-by: Paul Monson <paulmon@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2019-06-12 10:44:29 -07:00 committed by GitHub
parent c9ca96dd96
commit bb3e8a68b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 3 deletions

View file

@ -40,6 +40,8 @@ def get_host_platform():
return 'win-amd64'
if '(arm)' in sys.version.lower():
return 'win-arm32'
if '(arm64)' in sys.version.lower():
return 'win-arm64'
return sys.platform
# Set for cross builds explicitly