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 36014e6 commit e995f25Copy full SHA for e995f25
src/pip/_internal/utils/glibc.py
@@ -21,7 +21,7 @@ def glibc_version_string_confstr() -> Optional[str]:
21
if gnu_libc_version is None:
22
return None
23
# os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17":
24
- _, version = gnu_libc_version
+ _, version = gnu_libc_version.split()
25
except (OSError, ValueError):
26
# os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)...
27
0 commit comments