From bc63d9ec6185cd6b1c08c419fb9537140f9f11ff Mon Sep 17 00:00:00 2001 From: nanoric Date: Mon, 22 Jul 2019 11:26:33 +0800 Subject: [PATCH] [Del] Remove vnoes from Linux build for default because of memory requirement is too high currently. I will try to improve autocxxpy to reduce the memory usage soon. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c2093f84..ab20f5fb 100644 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ if platform.system() == "Windows": elif platform.system() == "Darwin": ext_modules = [] else: - ext_modules = [vnctptd, vnctpmd, vnoes] + ext_modules = [vnctptd, vnctpmd] def check_extension_build_flag(key: str, module: Extension):