Changeset 134


Ignore:
Timestamp:
04/03/09 17:24:13 (7 years ago)
Author:
mmckerns
Message:

patched easy_install problem for matplotlib (see ticket #56)

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • mystic/setup.py

    r129 r134  
    4343# close 'setup' call 
    4444setup_code += """     
     45      zip_safe=True, 
    4546      scripts=[]) 
    4647""" 
     
    5253try: 
    5354    import numpy 
    54     import matplotlib 
     55    #import matplotlib #XXX: has issues being zip_safe 
    5556except ImportError: 
    5657    print "\n***********************************************************" 
  • releases/Makefile

    r132 r134  
    11#--------------------------------------------------- 
    2 PATCHES = 2 
     2NPATCH = 3 
    33#--------------------------------------------------- 
    44 
     
    66 
    77patch: 
    8         patch -p0 -i mystic-0.1a1-patch2.diff 
     8        patch -p0 -i mystic-0.1a1-patch${NPATCH}.diff 
    99 
    1010release: 
    11         tar -cvzf mystic-0.1a1-p2.tgz mystic-0.1a1 
     11        tar -cvzf mystic-0.1a1-p${NPATCH}.tgz mystic-0.1a1 
    1212 
    1313clean: 
    1414        cd mystic-0.1a1; cd examples; rm -f README example*; cd ..; cd .. 
    1515        cd mystic-0.1a1; cd mystic; rm -f scipy_optimize*; cd ..; cd .. 
     16        cd mystic-0.1a1; rm -f setup.py; cd .. 
    1617        svn up 
Note: See TracChangeset for help on using the changeset viewer.