Changeset 134
- Timestamp:
- 04/03/09 17:24:13 (7 years ago)
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/setup.py
r129 r134 43 43 # close 'setup' call 44 44 setup_code += """ 45 zip_safe=True, 45 46 scripts=[]) 46 47 """ … … 52 53 try: 53 54 import numpy 54 import matplotlib55 #import matplotlib #XXX: has issues being zip_safe 55 56 except ImportError: 56 57 print "\n***********************************************************" -
releases/Makefile
r132 r134 1 1 #--------------------------------------------------- 2 PATCHES = 2 2 NPATCH = 3 3 3 #--------------------------------------------------- 4 4 … … 6 6 7 7 patch: 8 patch -p0 -i mystic-0.1a1-patch 2.diff8 patch -p0 -i mystic-0.1a1-patch${NPATCH}.diff 9 9 10 10 release: 11 tar -cvzf mystic-0.1a1-p 2.tgz mystic-0.1a111 tar -cvzf mystic-0.1a1-p${NPATCH}.tgz mystic-0.1a1 12 12 13 13 clean: 14 14 cd mystic-0.1a1; cd examples; rm -f README example*; cd ..; cd .. 15 15 cd mystic-0.1a1; cd mystic; rm -f scipy_optimize*; cd ..; cd .. 16 cd mystic-0.1a1; rm -f setup.py; cd .. 16 17 svn up
Note: See TracChangeset
for help on using the changeset viewer.