From 82309fc2e57d010fa09797a0fe754262d3b89962 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Sep 2017 20:18:40 -0400 Subject: [PATCH] rely on futures Signed-off-by: Kenneth Reitz --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43bf723..f943ab4 100644 --- a/setup.py +++ b/setup.py @@ -17,10 +17,11 @@ DESCRIPTION = 'It does what it says it does.' URL = 'https://github.com/kennethreitz/background' EMAIL = 'me@kennethreitz.org' AUTHOR = 'Kenneth Reitz' -VERSION = '0.1.0' +VERSION = '0.1.1' # What packages are required for this module to be executed? REQUIRED = [ + 'futures' # 'requests', 'maya', 'records', ]