1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Remove unused abi arg from _compatible_tags

This commit is contained in:
Chris Hunt 2019-11-23 18:02:31 -05:00
parent 1c8c481214
commit 480911bc8e

View file

@ -402,7 +402,6 @@ def _compatible_tags(
version=None, # type: Optional[str]
platform=None, # type: Optional[str]
impl=None, # type: Optional[str]
abi=None, # type: Optional[str]
):
# type: (...) -> List[Tuple[str, str, str]]
supported = [] # type: List[Tuple[str, str, str]]
@ -468,7 +467,7 @@ def get_supported(
supported.extend(_cpython_tags(version, platform, impl, abi))
supported.extend(_generic_tags(version, platform, impl, abi))
supported.extend(_compatible_tags(version, platform, impl, abi))
supported.extend(_compatible_tags(version, platform, impl))
tags = [
parts if isinstance(parts, Tag) else Tag(*parts)