Bump fuel-devops version up to 2.9.24

We need this update because 2.9 branch contains bug related to
decoding ssh output which contains non-asci symbols.
Also we want to make wait methods strict to timeouts
(for now both wait methods can stuck if ther are stuck inside
given predicate)

Change-Id: I083c9ee3768dffc60e4b42852d28813a8e02c6d9
This commit is contained in:
Vladimir Khlyunev 2017-02-21 11:27:49 +04:00
parent 61cc7dec9a
commit 5f094dd850
3 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ import logging.config
from devops.settings import LOGS_DIR
from devops.settings import LOGS_SIZE
__version__ = '2.9.23'
__version__ = '2.9.24'
if not os.path.exists(LOGS_DIR):
os.makedirs(LOGS_DIR)

View File

@ -57,16 +57,16 @@ master_doc = 'index'
# General information about the project.
project = u'devops'
copyright = u'2013 - 2015, Mirantis Inc.'
copyright = u'2013 - 2017, Mirantis Inc.'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '2.9.23'
version = '2.9.24'
# The full version, including alpha/beta/rc tags.
release = '2.9.23'
release = '2.9.24'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -18,7 +18,7 @@ from setuptools import setup
setup(
name='fuel-devops',
version='2.9.23',
version='2.9.24',
description='Library for creating and manipulating virtual environments',
author='Mirantis, Inc.',
author_email='product@mirantis.com',