Changeset ca6659f in sasview for sasview


Ignore:
Timestamp:
Aug 10, 2016 7:05:32 AM (8 years ago)
Author:
lewis
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
9d17c1d
Parents:
ebc1407 (diff), c3e4e213 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into file-converter

Location:
sasview
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sasview/setup_exe.py

    r5552396 rc3e4e213  
    242242if os.path.isfile(f): 
    243243    data_files.append(('.', [f])) 
     244 
     245# atlas DLL required by matplotlib 11.1 
     246# ** REVISIT WHEN MOVING TO ANACONDA ** 
     247f = "c:\\python27\\lib\\site-packages\\numpy\\core\\numpy-atlas.dll" 
     248if os.path.isfile(f): 
     249    data_files.append(('.', [f])) 
    244250     
    245251if os.path.isfile("BUILD_NUMBER"): 
     
    332338    # numpy 1.8 openmp bindings (still seems to use all the cores without them) 
    333339    #'libiomp5md.dll', 'libifcoremd.dll', 'libmmd.dll', 'svml_dispmd.dll','libifportMD.dll', 
     340    'numpy-atlas.dll', 
    334341    # microsoft C runtime (not allowed to ship with the app; need to ship vcredist 
    335342    'msvcp90.dll', 
  • sasview/sasview.py

    r1be5202 r77d92cd  
    8181#Always use private .matplotlib setup to avoid conflicts with other 
    8282#uses of matplotlib 
    83 #Have to check if .sasview exists first  
     83#Have to check if .sasview exists first 
    8484sasdir = os.path.join(os.path.expanduser("~"),'.sasview') 
    8585if not os.path.exists(sasdir): 
     
    119119        # Fitting perspective 
    120120        try: 
    121             import sas.sasgui.perspectives.fitting as module     
     121            import sas.sasgui.perspectives.fitting as module 
    122122            fitting_plug = module.Plugin() 
    123123            self.gui.add_perspective(fitting_plug) 
     
    145145            logging.error(traceback.format_exc()) 
    146146 
    147         #Calculator perspective    
     147        #Calculator perspective 
    148148        try: 
    149149            import sas.sasgui.perspectives.calculator as module 
     
    152152        except: 
    153153            logging.error("%s: could not find Calculator plug-in module"% \ 
     154                                                        APP_NAME) 
     155            logging.error(traceback.format_exc()) 
     156 
     157        # File converter tool 
     158        try: 
     159            import sas.sasgui.perspectives.file_converter as module 
     160            converter_plug = module.Plugin() 
     161            self.gui.add_perspective(converter_plug) 
     162        except: 
     163            logging.error("%s: could not find File Converter plug-in module"% \ 
    154164                                                        APP_NAME) 
    155165            logging.error(traceback.format_exc()) 
     
    191201if __name__ == "__main__": 
    192202    run() 
    193  
Note: See TracChangeset for help on using the changeset viewer.