diff --git a/setup.py b/setup.py index ca437a3..527dacd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ include_package_data=True, install_requires=[ 'requests>=2,<3', - 'colorlog==3.0.1' + 'colorlog>=3.0.1' ], test_suite='tests', entry_points={ diff --git a/skybellpy/helpers/constants.py b/skybellpy/helpers/constants.py index 153e39b..66fce36 100644 --- a/skybellpy/helpers/constants.py +++ b/skybellpy/helpers/constants.py @@ -3,7 +3,7 @@ MAJOR_VERSION = 0 MINOR_VERSION = 6 -PATCH_VERSION = '2' +PATCH_VERSION = '3' __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)