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 b5a40ed commit 4211775Copy full SHA for 4211775
src/pip/_internal/utils/glibc.py
@@ -18,7 +18,7 @@ def glibc_version_string_confstr() -> Optional[str]:
18
return None
19
try:
20
# os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17":
21
- _, version = os.confstr("CS_GNU_LIBC_VERSION").split() # type: ignore[union-attr]
+ _, version = os.confstr("CS_GNU_LIBC_VERSION").split() # type: ignore
22
except (AttributeError, OSError, ValueError):
23
# os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)...
24
0 commit comments