Add futures as a requirement for Python 2

[1] added futures as a requirement for Python 2, but did not include
it as part of the requirements.txt and lower-requirements.txt files.

[1]- https://review.openstack.org/593556

Change-Id: I741f406ac348a09dc0ea08396a1f7242652fde6f
This commit is contained in:
Javier Pena 2018-12-17 08:56:53 +01:00
parent 7b31740c09
commit a25a652d89
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ eventlet==0.18.2
extras==1.0.0 extras==1.0.0
fixtures==3.0.0 fixtures==3.0.0
flake8==2.5.5 flake8==2.5.5
futures==3.1.1;python_version=='2.7' or python_version=='2.6' # PSF
gitdb==0.6.4 gitdb==0.6.4
GitPython==1.0.1 GitPython==1.0.1
greenlet==0.4.10 greenlet==0.4.10

View File

@ -11,3 +11,4 @@ cffi>=1.7.0 # MIT
eventlet!=0.18.3,!=0.20.1,>=0.18.2 # MIT eventlet!=0.18.3,!=0.20.1,>=0.18.2 # MIT
greenlet>=0.4.10 # MIT greenlet>=0.4.10 # MIT
msgpack>=0.5.0 # Apache-2.0 msgpack>=0.5.0 # Apache-2.0
futures>=3.1.1;python_version=='2.7' or python_version=='2.6' # PSF