File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""Version information."""
22
33# The following line *must* be the last in the module, exactly as formatted:
4- __version__ = "0.11.0 "
4+ __version__ = "0.11.1 "
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ botocore==1.10.42
22boto3 == 1.7.42
33click == 6.6
44docutils == 0.14
5- futures == 3.0.5
65jmespath == 0.9.4
76pyaml == 15.8.2
87python-dateutil == 2.8.0
Original file line number Diff line number Diff line change 1111 requirements = f .read ().splitlines ()
1212pip_requirements = [r .strip () for r in requirements ]
1313
14+ # Only install futures package if using a Python version <= 2.7
15+ if sys .version_info < (3 , 0 ):
16+ pip_requirements .append ('futures==3.0.5' )
17+
1418pkg_version = open ("aws_lambda/_version.py" ).readlines ()[- 1 ].split ()[- 1 ].strip ("\" '" )
1519
1620test_requirements = [
You can’t perform that action at this time.
0 commit comments