mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-11 04:56:24 +00:00
Change error value detection for glibc (#3487)
## Summary See: #3486. This just fixes the error message, not the underlying bug.
This commit is contained in:
parent
58d1cd2acb
commit
f342d39f8c
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ def get_operating_system_and_architecture():
|
|||
"major": musl_version[0],
|
||||
"minor": musl_version[1],
|
||||
}
|
||||
elif glibc_version:
|
||||
elif glibc_version != (-1, -1):
|
||||
operating_system = {
|
||||
"name": "manylinux",
|
||||
"major": glibc_version[0],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue