version.py 323 B

1234567891011121314151617
  1. from __future__ import division, absolute_import, print_function, unicode_literals
  2. from awlsim.common.compat import *
  3. __all__ = [
  4. "VERSION_MAJOR",
  5. "VERSION_MINOR",
  6. "VERSION_STRING",
  7. ]
  8. VERSION_MAJOR = 0
  9. VERSION_MINOR = 59
  10. VERSION_EXTRA = ""
  11. VERSION_STRING = "%d.%d%s" % (VERSION_MAJOR, VERSION_MINOR, VERSION_EXTRA)