Changeset db8805f in sasview
- Timestamp:
- Feb 5, 2019 6:47:30 PM (6 years ago)
- 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
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r7556019 rdb8805f 86 86 # 87 87 # The short X.Y version. 88 version = sas.sasview.__major_version__ + "." + sas.sasview.__minor_version__89 # The full version, including a lpha/beta/rc tags.88 version = ".".join(sas.sasview.__version__.split(".", 2)[0:2]) 89 # The full version, including ax/bx tags Note strict version is enforced. 90 90 release = sas.sasview.__version__ 91 91 -
docs/sphinx-docs/source/user/RELEASE.rst
r5fcb814 rdb8805f 15 15 the built in editor to create new models and to bring the NXcanSAS reader into 16 16 compliance with the final published specification. The orignal reader was 17 based on a draft version of the specification. As an e raly adopter,17 based on a draft version of the specification. As an early adopter, 18 18 interpretation and implementation of the spec was iterated with all producers 19 19 of NXcanSAS reduced data known to the SasView team in order to ensure -
src/sas/sasview/__init__.py
r7556019 rdb8805f 1 __major_version__ = "4" 2 __ minor_version__ = "2"3 __version__ = __major_version__ + "." + __minor_version__ + ".1" 1 from distutils.version import StrictVersion 2 __version__ = "4.2.1" 3 StrictVersion(__version__) 4 4 __DOI__ = "Zenodo, 10.5281/zenodo.1412041" 5 5 __release_date__ = "2019"
Note: See TracChangeset
for help on using the changeset viewer.