We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b9e724 commit c722ee0Copy full SHA for c722ee0
packaging/tags.py
@@ -323,7 +323,7 @@ def _is_manylinux_compatible(name, glibc_version):
323
# type: (str, GlibcVersion) -> bool
324
# Check for presence of _manylinux module.
325
try:
326
- import _manylinux
+ import _manylinux # noqa
327
328
return bool(getattr(_manylinux, name + "_compatible"))
329
except (ImportError, AttributeError):
@@ -456,7 +456,7 @@ def _generic_platforms():
456
def _interpreter_name():
457
# type: () -> str
458
459
- name = sys.implementation.name
+ name = sys.implementation.name # type: ignore
460
except AttributeError: # pragma: no cover
461
# Python 2.7 compatibility.
462
name = platform.python_implementation().lower()
0 commit comments