Changeset 6a88ad9 in sasview


Ignore:
Timestamp:
Sep 21, 2017 4:02:02 PM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
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, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
b4cd56e
Parents:
67d8b1b
Message:

git build tag moved to run.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasview/__init__.py

    r724af06 r6a88ad9  
    11__version__ = "4.1" 
    22__build__ = "GIT_COMMIT" 
    3  
    4 try: 
    5     import subprocess 
    6     import os 
    7     import platform 
    8     FNULL = open(os.devnull, 'w') 
    9     if platform.system() == "Windows": 
    10         args = ['git', 'describe', '--tags'] 
    11     else: 
    12         args = ['git describe --tags'] 
    13     git_revision = subprocess.check_output(args, 
    14                     stderr=FNULL, 
    15                     shell=True) 
    16     __build__ = str(git_revision).strip() 
    17 except subprocess.CalledProcessError as cpe: 
    18     import logging 
    19     logger = logging.getLogger(__name__) 
    20     logger.warning("Error while determining build number\n  Using command:\n %s \n Output:\n %s"% (cpe.cmd,cpe.output)) 
Note: See TracChangeset for help on using the changeset viewer.