From ab1aef9b882d5dbafc41e7ff01003bd299a56e5f Mon Sep 17 00:00:00 2001 From: Benjie Chen Date: Mon, 13 Aug 2012 10:19:45 -0400 Subject: [PATCH] allow pip install from github repository directly --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5a476d33..183d341fc 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ pjoin = os.path.join def cleanup(): """Clean up the junk left around by the build process""" - if "develop" not in sys.argv: + if "develop" not in sys.argv and "egg_info" not in sys.argv: try: shutil.rmtree('ipython.egg-info') except: