Changed the future dependencies in setup.py

Bug: 37714071
Fix: 37714071
Test: sudo python<3.4, 2.7> setup.py <install, develop>
Change-Id: I5b6d0fdc2e3e0e4425bb6ca90551bfc1f7460541
diff --git a/acts/framework/setup.py b/acts/framework/setup.py
index 97487cf..a7241af 100755
--- a/acts/framework/setup.py
+++ b/acts/framework/setup.py
@@ -23,7 +23,8 @@
 import sys
 
 install_requires = [
-    'future',
+    # Future needs to have a newer version that contains urllib.
+    'future>=0.16.0',
     # mock-1.0.1 is the last version compatible with setuptools <17.1,
     # which is what comes with Ubuntu 14.04 LTS.
     'mock<=1.0.1',