Skip to content

Commit 54712a7

Browse files
committed
Update wheel download script to use the correct file names for macOS (#9559)
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
1 parent 58cbfb4 commit 54712a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/download-mypyc-wheels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def download_files(version):
2929
for pyver in range(MIN_VER, MAX_VER + 1):
3030
for platform in PLATFORMS:
3131
abi_tag = "" if pyver >= 8 else "m"
32-
macos_ver = 9 if pyver >= 8 else 6
32+
macos_ver = 9 if pyver >= 6 else 6
3333
url = URL.format(
3434
base=BASE_URL,
3535
version=version,

0 commit comments

Comments
 (0)