Skip to content

Commit

Permalink
Merge pull request #53 from authorizon/fix_redis
Browse files Browse the repository at this point in the history
add missing dependencies of broadcaster backends: redis, kafka
  • Loading branch information
asafc authored Apr 25, 2021
2 parents 571fa7c + 6e4b2b5 commit e72ae19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Project homepage: https://github.com/authorizon/opal
"""

VERSION = (0, 1, 3)
VERSION = (0, 1, 4)
VERSION_STRING = '.'.join(map(str,VERSION))

__version__ = VERSION_STRING
Expand Down
1 change: 1 addition & 0 deletions setup/setup_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def get_long_description():

requirements = get_requirements()
requirements.append('opal-common=={}'.format(version))
requirements.extend(['asyncio-redis', 'aiokafka']) # broadcaster variants

setup(
name='opal-server',
Expand Down

0 comments on commit e72ae19

Please sign in to comment.