File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 33# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
44_version_major = 0
55_version_minor = 5
6- _version_micro = 1 #'' # use '' for first of series, number for 1 and above
6+ _version_micro = 2 #'' # use '' for first of series, number for 1 and above
77#_version_extra = 'dev'
88_version_extra = '' # Uncomment this for full releases
99
Original file line number Diff line number Diff line change 1515
1616from distutils .core import setup
1717
18-
19- # Find the messenger binary file(s) and copy it to /matlab folder.
20- from messenger .make import get_messenger_dir
21- messenger_dir = get_messenger_dir ()
22-
23- for f in glob .glob ("./messenger/%s/messenger.*" % messenger_dir ):
18+ # Find the messenger binary files and copy them all to the matlab folder.
19+ # We include all of these, so that when releases are built on travis, they
20+ # include the compiled mex files for all three platforms.
21+ msgrs = ['./messenger/mexa64/messenger.mexa64' ,
22+ './messenger/mexmaci64/messenger.mexmaci64' ,
23+ './messenger/mexw64/messenger.mexw64' ]
24+
25+ for f in msgrs :
2426 shutil .copy (f , "./pymatbridge/matlab" )
25-
26-
27+
2728# Get version and release info, which is all stored in pymatbridge/version.py
2829ver_file = os .path .join ('pymatbridge' , 'version.py' )
2930exec (open (ver_file ).read ())
You can’t perform that action at this time.
0 commit comments