Skip to content

Commit

Permalink
Fix req version for issue #16. v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterWil committed Dec 29, 2020
1 parent e2cf64c commit 92ca676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down
2 changes: 1 addition & 1 deletion skybellpy/helpers/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

MAJOR_VERSION = 0
MINOR_VERSION = 6
PATCH_VERSION = '2'
PATCH_VERSION = '3'

__version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)

Expand Down

0 comments on commit 92ca676

Please sign in to comment.