Skip to content

Commit 59801d4

Browse files
committed
Disable macOS CPython 3.5 build for now
1 parent 90ce9d9 commit 59801d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cibuildwheel/macos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def get_python_configurations(build_selector: BuildSelector) -> List[PythonConfi
3535
python_configurations = [
3636
# CPython
3737
PythonConfiguration(version='2.7', identifier='cp27-macosx_x86_64', url='https://www.python.org/ftp/python/2.7.18/python-2.7.18-macosx10.9.pkg'),
38-
PythonConfiguration(version='3.5', identifier='cp35-macosx_x86_64', url='https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg'),
38+
# TODO: figure out what's going on in CPython 3.5 on macOS 11. or, remove it :)
39+
# PythonConfiguration(version='3.5', identifier='cp35-macosx_x86_64', url='https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg'),
3940
PythonConfiguration(version='3.6', identifier='cp36-macosx_x86_64', url='https://www.python.org/ftp/python/3.6.8/python-3.6.8-macosx10.9.pkg'),
4041
PythonConfiguration(version='3.7', identifier='cp37-macosx_x86_64', url='https://www.python.org/ftp/python/3.7.8/python-3.7.8-macosx10.9.pkg'),
4142
PythonConfiguration(version='3.8', identifier='cp38-macosx_x86_64', url='https://www.python.org/ftp/python/3.8.4/python-3.8.4-macosx10.9.pkg'),

0 commit comments

Comments
 (0)