We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72b6491 commit 92b079aCopy full SHA for 92b079a
src/pip/_internal/pep425tags.py
@@ -309,15 +309,6 @@ def _get_custom_platforms(arch):
309
arches = _mac_platforms(arch)
310
elif arch_prefix in ['manylinux2014', 'manylinux2010']:
311
arches = _custom_manylinux_platforms(arch)
312
- elif arch is None:
313
- arches = []
314
- if is_manylinux2014_compatible():
315
- arches.append('manylinux2014' + arch_sep + arch_suffix)
316
- if is_manylinux2010_compatible():
317
- arches.append('manylinux2010' + arch_sep + arch_suffix)
318
- if is_manylinux1_compatible():
319
- arches.append('manylinux1' + arch_sep + arch_suffix)
320
- arches.append(arch)
321
else:
322
arches = [arch]
323
return arches
0 commit comments