Skip to content

Commit

Permalink
fixed bug in module not exported
Browse files Browse the repository at this point in the history
  • Loading branch information
cerealkill committed Apr 11, 2019
1 parent 58776e7 commit 9889e43
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion energyweb/__init__.py
Expand Up @@ -28,5 +28,5 @@
__author__ = 'Paul Depraz <github.com/cerealkill>'
__repository__ = 'github.com/energywebfoundation/ew-link-bond'
__status__ = "pre-alpha"
__version__ = "0.4.2"
__version__ = "0.4.3"
__date__ = "14 December 2018"
Empty file added energyweb/database/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions energyweb/dispatcher.py
Expand Up @@ -123,6 +123,10 @@ def run(self):
"""
try:
self.loop.run_until_complete(asyncio.gather(*[task.run(*args) for task, args in self.tasks]))
except KeyboardInterrupt:
self._clean_up()
if self.loop.is_running():
self.loop.close()
except Exception as e:
self._handle_exception(e)
finally:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@

setuptools.setup(
name="energyweb",
version="0.4.2",
version="0.4.3",
author="github.com/cerealkill",
author_email="paul.depraz@energyweb.org",
description="Energy utility data interface for blockchain smart contracts",
Expand Down
3 changes: 3 additions & 0 deletions twine_upload.sh
@@ -0,0 +1,3 @@
rm -rf ./dist/*
python3 setup.py sdist bdist_wheel
twine upload dist/*

0 comments on commit 9889e43

Please sign in to comment.