Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
argenisleon committed Nov 6, 2019
1 parent 7ba0b9c commit e7a356e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions optimus/helpers/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion optimus/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('.'))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def readme():
author='Favio Vazquez and Argenis Leon',
author_email='[email protected]',
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(),
Expand Down

0 comments on commit e7a356e

Please sign in to comment.