Changeset 762984a in sasview
- Timestamp:
- Dec 14, 2011 7:41:14 AM (13 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- b1da3a9
- Parents:
- ea32de3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/setup_exe.py
rea32de3 r762984a 51 51 py2exe.build_exe.isSystemDLL = isSystemDLL 52 52 53 if platform.architecture()[0] == '64bit' and sys.version_info >= (2, 6): 53 is_64bits = sys.maxsize > 2**32 54 if is_64bits and sys.version_info >= (2, 6): 54 55 manifest = """ 55 56 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> … … 271 272 272 273 bundle_option = 2 273 if platform.architecture()[0] == '64bit':274 if is_64bits: 274 275 bundle_option = 3 275 276
Note: See TracChangeset
for help on using the changeset viewer.