From f342d39f8c6df1bfcdcd4c99ca0a326a0a62e23f Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 9 May 2024 11:24:03 -0400 Subject: [PATCH] Change error value detection for glibc (#3487) ## Summary See: #3486. This just fixes the error message, not the underlying bug. --- crates/uv-interpreter/python/get_interpreter_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-interpreter/python/get_interpreter_info.py b/crates/uv-interpreter/python/get_interpreter_info.py index 0cc0a3fc0..c8e83ecdc 100644 --- a/crates/uv-interpreter/python/get_interpreter_info.py +++ b/crates/uv-interpreter/python/get_interpreter_info.py @@ -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],