Skip to content

Commit

Permalink
0.7.2 -> 0.7.3 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored May 5, 2019
1 parent a2753a7 commit c8a9c58
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions bellows/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
MAJOR_VERSION = 0
MINOR_VERSION = 7
PATCH_VERSION = '3'
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

from setuptools import find_packages, setup

import bellows

setup(
name="bellows-homeassistant",
version="0.7.2",
version=bellows.__version__,
description="Library implementing EZSP",
url="http://github.com/zigpy/bellows",
author="Russell Cloran",
Expand All @@ -19,7 +21,7 @@
'click-log==0.2.0',
'pure_pcapy3==1.0.1',
'pyserial-asyncio',
'zigpy-homeassistant',
'zigpy-homeassistant>=0.3.3',
],
dependency_links=[
'https://github.com/rcloran/pure-pcapy-3/archive/e289c7d7566306dc02d8f4eb30c0358b41f40f26.zip#egg=pure_pcapy3-1.0.1',
Expand Down

0 comments on commit c8a9c58

Please sign in to comment.