From c8b7c2a247917c35e639a0a1b03134e3db7b9142 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 21 Jul 2008 19:17:35 +0200 Subject: [PATCH] fix setup option clash --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 93793e3e..5feab3d1 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ else: scripts = ["cython.py"] try: - sys.argv.remove("--no-compile") + sys.argv.remove("--no-cython-compile") except ValueError: try: from Cython.Compiler.Main import compile -- 2.26.2