update six dependency (#709)

table extensions use viewkeys
This commit is contained in:
Adam Holmberg 2017-04-19 13:46:42 -05:00 committed by Jim Witschey
parent 4ca22b2e8e
commit ba8728a399
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
six >=1.6
six >=1.9
futures <=2.2.0
# Futures is not required for Python 3, but it works up through 2.2.0 (after which it introduced breaking syntax).
# This is left here to make sure install -r works with any runtime. When installing via setup.py, futures is omitted

View File

@ -396,7 +396,7 @@ def run_setup(extensions):
else:
sys.stderr.write("Bypassing Cython setup requirement\n")
dependencies = ['six >=1.6']
dependencies = ['six >=1.9']
if not PY3:
dependencies.append('futures')