Changeset d859737 in sasview


Ignore:
Timestamp:
Feb 25, 2015 9:53:21 AM (10 years ago)
Author:
Doucet, Mathieu <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:
ce15ce4
Parents:
caf3baa6
Message:

Remove svn rev code.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • build_tools/get_version.py

    r3a39c2e rd859737  
    55import subprocess 
    66 
    7 def get_svn_revision(): 
    8     p = subprocess.Popen("svnversion", shell=True, \ 
     7def get_latest_git_commit(): 
     8    p = subprocess.Popen("git rev-parse --short HEAD", shell=True, \ 
    99       stdout=subprocess.PIPE, stderr=subprocess.PIPE) 
    1010    (stdout, stderr) = p.communicate() 
     
    1414    except: 
    1515        return __revision__ 
    16  
     16     
    1717# Get the version number from the sasview module 
    1818# Check to see if we are dealing with a release 
     
    2626# Get actual revision number if possible 
    2727try: 
    28     rev = get_svn_revision() 
     28    rev = get_latest_git_commit() 
    2929    if rev is not None: 
    3030        __revision__ = rev 
  • sasview/__init__.py

    r79492222 rd859737  
    66    __build__ = str(d.version) 
    77except: 
    8     try: 
    9         import os 
    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') 
    14             buff = f.read().strip() 
    15             if len(buff)<50: 
    16                 __build__ = buff 
    17     except: 
    18         import logging 
    19         import sys 
    20         logging.warning("Error while determining build number\n  %s" % sys.exc_value) 
     8    import logging 
     9    import sys 
     10    logging.warning("Error while determining build number\n  %s" % sys.exc_value) 
Note: See TracChangeset for help on using the changeset viewer.