4
# Copyright 2014-2015 Canonical Limited.
6
# This file is part of charm-helpers.
8
# charm-helpers is free software: you can redistribute it and/or modify
9
# it under the terms of the GNU Lesser General Public License version 3 as
10
# published by the Free Software Foundation.
12
# charm-helpers is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU Lesser General Public License for more details.
17
# You should have received a copy of the GNU Lesser General Public License
18
# along with charm-helpers. If not, see <http://www.gnu.org/licenses/>.
22
__author__ = "Jorge Niedbalski <jorge.niedbalski@canonical.com>"
25
def current_version():
26
"""Current system python version"""
27
return sys.version_info
30
def current_version_string():
31
"""Current system python version as string major.minor.micro"""
32
return "{0}.{1}.{2}".format(sys.version_info.major,
33
sys.version_info.minor,
34
sys.version_info.micro)