Changeset 412
- Timestamp:
- 08/23/10 11:26:21 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/alta/setup_mystic-0.2a1_alta.py
r398 r412 34 34 # add dependencies 35 35 numpy_version = '>=1.0' 36 sympy_version = '>=0.6.5' 37 scipy_version = '>=0.6.0' 36 38 matplotlib_version = '>=0.91' 37 39 if has_setuptools: 38 40 setup_code += """ 39 install_requires = ('numpy%s'),41 install_requires = ['numpy%s'], 40 42 """ % numpy_version 41 43 … … 52 54 try: 53 55 import numpy 56 #import sympy 57 #import scipy 54 58 #import matplotlib #XXX: has issues being zip_safe 55 59 except ImportError: … … 57 61 print "WARNING: One of the following dependencies is unresolved:" 58 62 print " numpy %s" % numpy_version 63 print " sympy %s (optional)" % sympy_version 64 print " scipy %s (optional)" % scipy_version 59 65 print " matplotlib %s (optional)" % matplotlib_version 60 66 print "***********************************************************\n"
Note: See TracChangeset
for help on using the changeset viewer.