xviz/python/xviz_avs/_version.py
Timothy Wojtaszek b326535f28
Update Protoc generated bindings (#737)
* Generated bindings will complain when using an updated version of the protobuf build tools.  Update to generated bindings to the minimum protoc version 19.
2024-07-05 11:03:23 -07:00

7 lines
281 B
Python

version_info = (0, 1, 0, 'alpha', 6)
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))