From bc58edff8522bb60a13637fda54e1fb2f373ac5d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 6 Nov 2020 15:04:50 -0500 Subject: [PATCH] Don't pass empty string to msvc linker. Ref pypa/setuptools#2417. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bc6eafaa9..792f5f2d8 100644 --- a/setup.py +++ b/setup.py @@ -157,7 +157,7 @@ class BuildExt(build_ext): "unix": [""], } l_opts = { - "msvc": [""], + "msvc": [], "unix": [""], }