From e7a356ecf02858ebd8a568c57546b43973b964ab Mon Sep 17 00:00:00 2001 From: Argenis Leon Date: Wed, 6 Nov 2019 06:48:29 -0600 Subject: [PATCH] Bump version --- docs/source/conf.py | 2 +- optimus/helpers/functions.py | 4 ++-- optimus/version.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 921b28fd..7a0c1ecb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = "2.2.26" +release = "2.2.27" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/optimus/helpers/functions.py b/optimus/helpers/functions.py index 75e88c3b..15660260 100644 --- a/optimus/helpers/functions.py +++ b/optimus/helpers/functions.py @@ -297,8 +297,8 @@ def create_buckets(lower_bound, upper_bound, bins): buckets.append({"lower": low, "upper": high, "bucket": i}) low = high - # ensure that the upper bound is exactly the higher value. - # Because floating point calculation it can miss the upper bound in the final sum + # ensure that the upper bound is exactly the higher value. + # Because floating point calculation it can miss the upper bound in the final sum buckets[bins - 1]["upper"] = upper_bound return buckets diff --git a/optimus/version.py b/optimus/version.py index 360247b8..e4798d9d 100644 --- a/optimus/version.py +++ b/optimus/version.py @@ -5,5 +5,5 @@ def _safe_int(string): return string -__version__ = '2.2.26' +__version__ = '2.2.27' VERSION = tuple(_safe_int(x) for x in __version__.split('.')) diff --git a/setup.py b/setup.py index cf492401..38ab1d36 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ def readme(): author='Favio Vazquez and Argenis Leon', author_email='argenisleon@gmail.com', url='https://github.com/ironmussa/Optimus/', - download_url='https://github.com/ironmussa/Optimus/archive/2.2.26.tar.gz', + download_url='https://github.com/ironmussa/Optimus/archive/2.2.27.tar.gz', description=('Optimus is the missing framework for cleaning and pre-processing data in a distributed fashion with ' 'pyspark.'), long_description=readme(),