Skip to content

Commit

Permalink
Update wheel download script to use the correct file names for macOS (#…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
JukkaL committed Oct 8, 2020
1 parent 332e788 commit 68797a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/download-mypyc-wheels.py
Expand Up @@ -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,
Expand Down

0 comments on commit 68797a6

Please sign in to comment.