From 729503692f8172bfd9c535952fc5c25973cda159 Mon Sep 17 00:00:00 2001 From: Daniel Tan Date: Fri, 2 Apr 2021 13:24:03 +0800 Subject: [PATCH] (fix) fix AttributeError MSVCCompiler when building Windows binary --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8a0c12f2d2..52c241a0bb 100755 --- a/setup.py +++ b/setup.py @@ -176,7 +176,7 @@ def main(): "bin/hummingbot.py", "bin/hummingbot_quickstart.py" ], - cmdclass={'build_ext': BuildExt}, + cmdclass={'build_ext': BuildExt} if os.name != "nt" else {}, )