summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2015-05-26 22:00:48 -0700
committerJoshua Harlow <harlowja@gmail.com>2015-05-26 22:01:49 -0700
commit42eb95b13c6d38b831a5ab481f47014460b7c4fa (patch)
tree7dd14db3cb106d802772d6e8891b616bc44f25e0
parent89cd2a7501997da8c4e5fee117f741aa644c5f75 (diff)
downloadzake-42eb95b13c6d38b831a5ab481f47014460b7c4fa.tar.gz
Restrict kazoo version until bug in 2.1 is resolved
-rw-r--r--ChangeLog1
-rwxr-xr-xsetup.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ec86486..c7932c1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,5 @@
0.2.2:
+ - Restrict kazoo version until bug in 2.1 is resolved
0.2.1:
- Remove testtools as an install requirement
- Changed attribute name "_child_watches" to "_child_watchers"
diff --git a/setup.py b/setup.py
index a495433..d929065 100755
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ with open("README.rst", "r") as readme:
setup(
name='zake',
- version='0.2.1',
+ version='0.2.2',
description='A python package that works to provide a nice set of '
'testing utilities for the kazoo library.',
author="Joshua Harlow",
@@ -34,7 +34,7 @@ setup(
url='https://github.com/yahoo/Zake',
license="ASL 2.0",
install_requires=[
- 'kazoo',
+ 'kazoo>=1.3.1,!=2.1',
'six',
],
classifiers=[