Changeset 0f2c15d in sasview
- Timestamp:
- Dec 5, 2011 11:06:07 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:
- 68dc52c6
- Parents:
- f9303b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/setup_mac.py
rbc69dcc r0f2c15d 9 9 12/01/2011: When seeing an error related to pytz.zoneinfo not being found, change the following line in py2app/recipes/matplotlib.py 10 10 mf.import_hook('pytz.tzinfo', m, ['UTC']) 11 12/05/2011: Generally needs a recent version of macholib, modulegraph, and altgraph (through easy_install) on OSX >= 10.6 11 12 """ 12 13 from setuptools import setup … … 19 20 import pytz 20 21 import sys 22 import platform 21 23 22 24 ICON = local_config.SetupIconFile_mac … … 102 104 EXCLUDES = ['PyQt4', 'sip', 'QtGui'] 103 105 104 OPTIONS = {'argv_emulation': True, 106 # Cross-platform applications generally expect sys.argv to 107 # be used for opening files. This requires argv_emulation = True 108 argv_emulation = True 109 # argv_emulation is not supported for 64-bit apps 110 if platform.architecture()[0] == '64bit': 111 argv_emulation = False 112 113 OPTIONS = {'argv_emulation': False, 105 114 'packages': ['lxml','numpy', 'scipy', 'pytz', 'encodings'], 106 115 'iconfile': ICON,
Note: See TracChangeset
for help on using the changeset viewer.