Changeset 914ba0a in sasview for src/sas/sasview/__init__.py


Ignore:
Timestamp:
May 2, 2017 3:58:01 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:
d66dbcc
Parents:
74d9780 (diff), 658dd57 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge with master

File:
1 edited

Legend:

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

    r899e084 r914ba0a  
    1 __version__ = "4.0.0a4" 
    2 __build__ = "1" 
     1__version__ = "4.1" 
     2__build__ = "GIT_COMMIT" 
     3 
     4import logging 
     5logger = logging.getLogger(__name__) 
     6 
     7try: 
     8    import subprocess 
     9    import os 
     10    import platform 
     11    FNULL = open(os.devnull, 'w') 
     12    if platform.system() == "Windows": 
     13        args = ['git', 'describe', '--tags'] 
     14    else: 
     15        args = ['git describe --tags'] 
     16    git_revision = subprocess.check_output(args, 
     17                    stderr=FNULL, 
     18                    shell=True) 
     19    __build__ = str(git_revision).strip() 
     20except subprocess.CalledProcessError as cpe: 
     21    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.