_version.py 349 B

12345678910
  1. """ For beta/alpha/rc releases, the version number for a beta is X.Y.ZbN
  2. **without dots between the last 'micro' number and b**. N is the number of
  3. the beta released i.e. 1, 2, 3 ...
  4. See PEP 440 https://www.python.org/dev/peps/pep-0440/
  5. """
  6. version_info = (5, 2, 0)
  7. __version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])