From dc4629a1bc3ed641048a5657be10c9cfd82a604e Mon Sep 17 00:00:00 2001 From: Arturo Hernandez Date: Mon, 30 Apr 2018 09:33:17 -0400 Subject: [PATCH] added future to install --- CHANGELOG.md | 17 +++++++++++++++++ setup.py | 1 + test.py | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e9562..6af9311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ Changelog ========= +Version 0.9 +----------- +* Initial Python 3 Support +* major changes + +Version 0.8 +----------- +* test suite tool (test_machine.py) +* Initial TCP support + +Version 0.7 +----------- +* internal major changes + +Version 0.6 +----------- +* device password support Version 0.5 ----------- diff --git a/setup.py b/setup.py index ae455e6..13ebd9b 100644 --- a/setup.py +++ b/setup.py @@ -19,5 +19,6 @@ setup( 'biometrics', 'security' ], + install_requires=['future'], zip_safe=False ) diff --git a/test.py b/test.py index cbac697..ab19bd7 100644 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ from zk import ZK, const sys.path.append("zk") conn = None -zk = ZK('192.168.1.10', port=4370, timeout=5) +zk = ZK('192.168.1.201', port=4370, timeout=5) try: print 'Connecting to device ...' conn = zk.connect()