Changeset 5709051 in sasview for sansview


Ignore:
Timestamp:
Mar 7, 2013 3:16:04 PM (11 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
a602942e
Parents:
0d795bf
Message:

Improved version handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/__init__.py

    r5d9b2c0 r5709051  
    33try: 
    44    import pkg_resources 
    5     d = pkg_resources.get_distribution("sansview") 
    6     rev = int(d.parsed_version[5]) 
    7     __build__ = str(rev) 
     5    d = pkg_resources.get_distribution("sasview") 
     6    __build__ = str(d.version) 
    87except: 
    98    try: 
    109        import os 
    11         if os.path.isfile("BUILD_NUMBER"): 
    12             f=open("BUILD_NUMBER",'r') 
     10        dir = os.path.dirname(__file__) 
     11        filepath = os.path.join(dir, "BUILD_NUMBER") 
     12        if os.path.isfile(filepath): 
     13            f=open(filepath, 'r') 
    1314            buff = f.read().strip() 
    1415            if len(buff)<50: 
Note: See TracChangeset for help on using the changeset viewer.