From 50be3d54b08c2e237d6750946b68745bc64af092 Mon Sep 17 00:00:00 2001 From: memento Date: Wed, 20 Dec 2023 14:51:38 -0600 Subject: [PATCH] (fix) bypass download for windows? --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 73c9c4061..dd97ac112 100644 --- a/setup.py +++ b/setup.py @@ -239,6 +239,9 @@ def run(self): if BUILDING_FOR_WINDOWS: class Distribution(_Distribution): + def has_c_libraries(self): + return not has_system_lib() + def is_pure(self): return False