|
35 | 35 |
|
36 | 36 | from typing import Union, Optional
|
37 | 37 |
|
38 |
| -# python_configurations = [ |
39 |
| -# { identifier: "cp36-macosx_x86_64", version: "3.6", url: "https://www.python.org/ftp/python/3.6.8/python-3.6.8-macosx10.9.pkg" }, |
40 |
| -# { identifier: "cp37-macosx_x86_64", version: "3.7", url: "https://www.python.org/ftp/python/3.7.9/python-3.7.9-macosx10.9.pkg" }, |
41 |
| -# { identifier: "cp38-macosx_x86_64", version: "3.8", url: "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, |
42 |
| -# { identifier: "cp38-macosx_arm64", version: "3.8", url: "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, |
43 |
| -# { identifier: "cp38-macosx_universal2", version: "3.8", url: "https://www.python.org/ftp/python/3.8.10/python-3.8.10-macosx10.9.pkg" }, |
44 |
| -# { identifier: "cp39-macosx_x86_64", version: "3.9", url: "https://www.python.org/ftp/python/3.9.7/python-3.9.7-macos11.pkg" }, |
45 |
| -# { identifier: "cp39-macosx_arm64", version: "3.9", url: "https://www.python.org/ftp/python/3.9.7/python-3.9.7-macos11.pkg" }, |
46 |
| -# { identifier: "cp39-macosx_universal2", version: "3.9", url: "https://www.python.org/ftp/python/3.9.7/python-3.9.7-macos11.pkg" }, |
47 |
| -# { identifier: "cp310-macosx_x86_64", version: "3.10", url: "https://www.python.org/ftp/python/3.10.0/python-3.10.0-macos11.pkg" }, |
48 |
| -# { identifier: "cp310-macosx_arm64", version: "3.10", url: "https://www.python.org/ftp/python/3.10.0/python-3.10.0-macos11.pkg" }, |
49 |
| -# { identifier: "cp310-macosx_universal2", version: "3.10", url: "https://www.python.org/ftp/python/3.10.0/python-3.10.0-macos11.pkg" }, |
50 |
| -# { identifier: "pp37-macosx_x86_64", version: "3.7", url: "https://downloads.python.org/pypy/pypy3.7-v7.3.5-osx64.tar.bz2" }, |
51 |
| -# ] |
52 | 38 |
|
53 | 39 | install_certifi_script = Path(__file__).parent / "install_certifi.py"
|
54 | 40 |
|
@@ -135,7 +121,7 @@ def main():
|
135 | 121 |
|
136 | 122 | tmp = Path("/tmp/cibw_tmp")
|
137 | 123 | version = "3.9"
|
138 |
| - url = "https://www.python.org/ftp/python/3.9.7/python-3.9.7-macos11.pkg" |
| 124 | + url = "https://www.python.org/ftp/python/3.9.9/python-3.9.9-macos11.pkg" |
139 | 125 |
|
140 | 126 | base_python = install_cpython(tmp, version, url)
|
141 | 127 | assert base_python.exists()
|
|
0 commit comments