From c8a9c58d402245df3c2f230b78afa6532e10b2b4 Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Sat, 4 May 2019 22:29:22 -0400 Subject: [PATCH] 0.7.2 -> 0.7.3 (#160) --- bellows/__init__.py | 5 +++++ setup.py | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/bellows/__init__.py b/bellows/__init__.py index e69de29b..9ef10f5b 100644 --- a/bellows/__init__.py +++ b/bellows/__init__.py @@ -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) diff --git a/setup.py b/setup.py index 1f938de5..ec4184ea 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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',