Changes in / [713cc1c:e5c09cf] in sasview
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/__init__.py
r801a296 r8ca1ba1 3 3 try: 4 4 import subprocess 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) 5 git_revision = subprocess.check_output(['git', 'rev-parse', 'HEAD']) 10 6 __build__ = str(git_revision).strip() 11 7 except: -
sasview/setup_exe.py
rc3e4e213 r5552396 242 242 if os.path.isfile(f): 243 243 data_files.append(('.', [f])) 244 245 # atlas DLL required by matplotlib 11.1246 # ** REVISIT WHEN MOVING TO ANACONDA **247 f = "c:\\python27\\lib\\site-packages\\numpy\\core\\numpy-atlas.dll"248 if os.path.isfile(f):249 data_files.append(('.', [f]))250 244 251 245 if os.path.isfile("BUILD_NUMBER"): … … 338 332 # numpy 1.8 openmp bindings (still seems to use all the cores without them) 339 333 #'libiomp5md.dll', 'libifcoremd.dll', 'libmmd.dll', 'svml_dispmd.dll','libifportMD.dll', 340 'numpy-atlas.dll',341 334 # microsoft C runtime (not allowed to ship with the app; need to ship vcredist 342 335 'msvcp90.dll', -
src/sas/sascalc/calculator/BaseComponent.py
rdeddda1 rcb4ef58 7 7 # imports 8 8 import copy 9 from collections import OrderedDict10 11 9 import numpy 12 10 #TO DO: that about a way to make the parameter … … 256 254 Return a list of all available parameters for the model 257 255 """ 258 list = _ordered_keys(self.params)256 list = self.params.keys() 259 257 # WARNING: Extending the list with the dispersion parameters 260 258 list.extend(self.getDispParamList()) … … 266 264 """ 267 265 list = [] 268 for item in _ordered_keys(self.dispersion): 269 for p in _ordered_keys(self.dispersion[item]): 266 267 for item in self.dispersion.keys(): 268 for p in self.dispersion[item].keys(): 270 269 if p not in ['type']: 271 270 list.append('%s.%s' % (item.lower(), p.lower())) … … 310 309 """ 311 310 raise ValueError, "Model operation are no longer supported" 312 313 314 def _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
rd2fd8fc rcb4ef58 3 3 SAS generic computation and sld file readers 4 4 """ 5 from sas.sascalc.calculator.BaseComponent import BaseComponent 5 6 import sas.sascalc.calculator.core.sld2i as mod 6 from sas.sascalc.calculator.BaseComponent import BaseComponent7 7 from periodictable import formula 8 8 from periodictable import nsf
Note: See TracChangeset
for help on using the changeset viewer.