From 71864e66db7f404f1ff7e6bc200b3cda240d6e0a Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 6 Dec 2014 14:42:33 -0800 Subject: [PATCH] Update install_kernel_spec arguments Goes along with ipython/ipython#7124 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 62db62b..d8a3fb0 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class install_with_kernelspec(install): # TODO: Copy resources once they're specified log.info('Installing IPython kernel spec') - install_kernel_spec(td, 'bash', system=not self.user, replace=True) + install_kernel_spec(td, 'bash', user=self.user, replace=True) with open('README.rst') as f: readme = f.read()