We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c9baee commit f7ed21cCopy full SHA for f7ed21c
src/pip/_internal/pep425tags.py
@@ -313,15 +313,6 @@ def _get_custom_platforms(arch):
313
arches = _mac_platforms(arch)
314
elif arch_prefix in ['manylinux2014', 'manylinux2010']:
315
arches = _custom_manylinux_platforms(arch)
316
- elif arch is None:
317
- arches = []
318
- if is_manylinux2014_compatible():
319
- arches.append('manylinux2014' + arch_sep + arch_suffix)
320
- if is_manylinux2010_compatible():
321
- arches.append('manylinux2010' + arch_sep + arch_suffix)
322
- if is_manylinux1_compatible():
323
- arches.append('manylinux1' + arch_sep + arch_suffix)
324
- arches.append(arch)
325
else:
326
arches = [arch]
327
return arches
0 commit comments