1######################################################################
2#
3# File: b2/version.py
4#
5# Copyright 2018 Backblaze Inc. All Rights Reserved.
6#
7# License https://www.backblaze.com/using_b2_code.html
8#
9######################################################################
10
11import sys
12
13# To avoid confusion between official Backblaze releases of this tool and
14# the versions on Github, we use the convention that the third number is
15# odd for Github, and even for Backblaze releases.
16VERSION = '1.3.8'
17
18PYTHON_VERSION = '.'.join(map(str, sys.version_info[:3]))  # something like: 2.7.11
19
20USER_AGENT = 'backblaze-b2/%s python/%s' % (VERSION, PYTHON_VERSION)
21