Changes in / [e5c09cf:713cc1c] in sasview


Ignore:
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sasview/__init__.py

    r8ca1ba1 r801a296  
    33try: 
    44    import subprocess 
    5     git_revision = subprocess.check_output(['git', 'rev-parse', 'HEAD']) 
     5    import os 
     6    FNULL = open(os.devnull, 'w') 
     7    git_revision = subprocess.check_output(['git', 'rev-parse', 'HEAD'], 
     8                    stderr=FNULL, 
     9                    shell=True) 
    610    __build__ = str(git_revision).strip() 
    711except: 
  • 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', 
  • src/sas/sascalc/calculator/BaseComponent.py

    rcb4ef58 rdeddda1  
    77# imports 
    88import copy 
     9from collections import OrderedDict 
     10 
    911import numpy 
    1012#TO DO: that about a way to make the parameter 
     
    254256        Return a list of all available parameters for the model 
    255257        """ 
    256         list = self.params.keys() 
     258        list = _ordered_keys(self.params) 
    257259        # WARNING: Extending the list with the dispersion parameters 
    258260        list.extend(self.getDispParamList()) 
     
    264266        """ 
    265267        list = [] 
    266  
    267         for item in self.dispersion.keys(): 
    268             for p in self.dispersion[item].keys(): 
     268        for item in _ordered_keys(self.dispersion): 
     269            for p in _ordered_keys(self.dispersion[item]): 
    269270                if p not in ['type']: 
    270271                    list.append('%s.%s' % (item.lower(), p.lower())) 
     
    309310        """ 
    310311        raise ValueError, "Model operation are no longer supported" 
     312 
     313 
     314def _ordered_keys(d): 
     315    keys = list(d.keys()) 
     316    if not isinstance(d, OrderedDict): 
     317        keys.sort() 
     318    return keys 
  • src/sas/sascalc/calculator/sas_gen.py

    rcb4ef58 rd2fd8fc  
    33SAS generic computation and sld file readers 
    44""" 
     5import sas.sascalc.calculator.core.sld2i as mod 
    56from sas.sascalc.calculator.BaseComponent import BaseComponent 
    6 import sas.sascalc.calculator.core.sld2i as mod 
    77from periodictable import formula 
    88from periodictable import nsf 
Note: See TracChangeset for help on using the changeset viewer.