aesthete-team team mailing list archive
-
aesthete-team team
-
Mailing list archive
-
Message #00011
Patch to setup.py to require ipython
Hi all,
Please find attached a patch to setup.py that should (with any luck)
request that ipython is installed before building aesthete. At this
stage it may not actually be necessary, but it may be useful later on...
Cheers,
Chris.
=== modified file 'setup.py'
--- setup.py 2011-10-10 20:33:34 +0000
+++ setup.py 2011-10-26 04:24:23 +0000
@@ -36,7 +36,7 @@
# Check python dependencies, bail if not present
package_deps = [['numpy', '1.4.1'], ['scipy', '0.7.2'], ['sympy', '0.6.7'], ['cairo', '1.8.8'], ['gobject', '2.21.5'], ['gtk', '2.17.0'], \
- ['Image', '1.1.7'], ['matplotlib', '1.0.1']]
+ ['Image', '1.1.7'], ['matplotlib', '1.0.1'], ['IPython', '0.10']]
for package_dep in package_deps :
try :
imp.find_module(package_dep[0])
Follow ups