From 22c5e3ec2b4ae37de036f17fdd4d7a0cbf40e2f6 Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 30 Jan 2014 15:00:43 -0800 Subject: [PATCH] mention that pexpect ships in IPython.external and only check for it on posix --- setupbase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setupbase.py b/setupbase.py index b5c9b2089..f544be6a5 100644 --- a/setupbase.py +++ b/setupbase.py @@ -452,7 +452,8 @@ def check_for_dependencies(): check_for_sphinx() check_for_pygments() check_for_nose() - check_for_pexpect() + if os.name == 'posix': + check_for_pexpect() check_for_pyzmq() check_for_tornado() check_for_readline()