From f76cf16ccae2a64e2d2f3ef6fd69c24444f79fc1 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Thu, 8 Oct 2020 17:04:52 +0100 Subject: [PATCH] Update wheel download script to use the correct file names for macOS We switched the macOS version in the mypy_mypyc-wheels repository for Python 3.6 and 3.7 wheels. Examples of wheel names: https://github.com/mypyc/mypy_mypyc-wheels/releases/tag/v0.790%2Bdev.7273e9ab1664b59a74d9bd1d2361bbeb9864b7ab --- misc/download-mypyc-wheels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/download-mypyc-wheels.py b/misc/download-mypyc-wheels.py index ca18effe7cfd..0b9722cabd57 100755 --- a/misc/download-mypyc-wheels.py +++ b/misc/download-mypyc-wheels.py @@ -29,7 +29,7 @@ def download_files(version): for pyver in range(MIN_VER, MAX_VER + 1): for platform in PLATFORMS: abi_tag = "" if pyver >= 8 else "m" - macos_ver = 9 if pyver >= 8 else 6 + macos_ver = 9 if pyver >= 6 else 6 url = URL.format( base=BASE_URL, version=version,