Changeset 75fff69 in sasview
- Timestamp:
- Oct 18, 2017 5:20:05 AM (7 years ago)
- 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, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 202a4ce9
- Parents:
- a44b6c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
installers/setup_exe.py
rb963b20 r75fff69 206 206 data_files += calculator.data_files() 207 207 208 <<<<<<< Updated upstream:installers/setup_exe.py 208 209 from sas.sasgui.perspectives import invariant 209 210 data_files += invariant.data_files() 211 ======= 212 python_root = os.path.dirname(os.path.abspath(sys.executable)) 213 214 # Check for ATLAS 215 dll_path = os.path.join(python_root, 'lib', 'site-packages', 'numpy', 'core') 216 dlls = ['numpy-atlas'] 217 atlas_dlls = dll_check(dll_path, dlls) 218 >>>>>>> Stashed changes:sasview/setup_exe.py 210 219 211 220 from sas.sasgui import guiframe 212 221 data_files += guiframe.data_files() 213 222 223 <<<<<<< Updated upstream:installers/setup_exe.py 214 224 # Copy the config files 215 225 sasview_path = os.path.join('..', 'src', 'sas', 'sasview') … … 221 231 sas_path = os.path.join('..', 'src', 'sas') 222 232 data_files.append(('.', [os.path.join(sas_path, 'logging.ini')])) 233 ======= 234 if mkl_dlls: 235 data_files.append(('.', atlas_dlls)) 236 elif atlas_dlls: 237 data_files.append(('.', mkl_dlls)) 238 >>>>>>> Stashed changes:sasview/setup_exe.py 223 239 224 240 if os.path.isfile("BUILD_NUMBER"): … … 266 282 mkl_dlls = dll_check(mkl_path, ['mkl_core', 'mkl_def', 'libiomp5md']) 267 283 268 if atlas_dlls:284 if mkl_dlls: 269 285 data_files.append(('.', atlas_dlls)) 270 elif mkl_dlls:286 elif atlas_dlls: 271 287 data_files.append(('.', mkl_dlls)) 272 288
Note: See TracChangeset
for help on using the changeset viewer.