Changeset d9673d7a in sasview


Ignore:
Timestamp:
Dec 13, 2011 2:59:02 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
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:
59c6c1e
Parents:
dd0d059
Message:

fix for python25: sys.maxsize not exist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/setup.py

    r13f00a0 rd9673d7a  
    2424    def build_extensions(self): 
    2525        # Get 64-bitness 
    26         is_64bits = sys.maxsize > 2**32 
    27          
     26        if sys.version_info >= (2, 6): 
     27            is_64bits = sys.maxsize > 2**32 
     28        else: 
     29            # 'sys.maxsize' and 64bit: Not supported for python2.5 
     30            is_64bits = False 
    2831        c = self.compiler.compiler_type 
    2932        print "Compiling with %s (64bit=%s)" % (c, str(is_64bits)) 
Note: See TracChangeset for help on using the changeset viewer.