Changeset db8805f in sasview for src/sas/sasview/__init__.py


Ignore:
Timestamp:
Feb 5, 2019 6:47:30 PM (5 years ago)
Author:
butler
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249
Children:
6cfbe0f
Parents:
5fcb814
Message:

Fix to PR comments

Fix spelling in release notes and changed back to single release string
in init which is parsed for the X.Y version in sphinx.conf. Also use
distutils.version.StrictVersion? to enforce strict version labels as per
Paul Kienzle.

File:
1 edited

Legend:

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

    r7556019 rdb8805f  
    1 __major_version__ = "4" 
    2 __minor_version__ = "2" 
    3 __version__ = __major_version__ + "." + __minor_version__ + ".1" 
     1from distutils.version import StrictVersion 
     2__version__ = "4.2.1" 
     3StrictVersion(__version__) 
    44__DOI__ = "Zenodo, 10.5281/zenodo.1412041" 
    55__release_date__ = "2019" 
Note: See TracChangeset for help on using the changeset viewer.