Adding boto3 to setup.py and minor lint fixes

This commit is contained in:
Marcin Kulisz 2017-01-21 20:38:52 +00:00
parent ef698b06ca
commit 6507ccbc0b
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
import logging
from bootstrapvz.base import Task from bootstrapvz.base import Task
from bootstrapvz.common import phases from bootstrapvz.common import phases
from bootstrapvz.providers.ec2.tasks import ami from bootstrapvz.providers.ec2.tasks import ami
import logging
# TODO: Merge with the method available in wip-integration-tests branch # TODO: Merge with the method available in wip-integration-tests branch
@ -47,7 +47,6 @@ class PrintPublicIPAddress(Task):
@classmethod @classmethod
def run(cls, info): def run(cls, info):
ec2 = info._ec2
conn = info._ec2['connection'] conn = info._ec2['connection']
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
filename = info.manifest.plugins['ec2_launch']['print_public_ip'] filename = info.manifest.plugins['ec2_launch']['print_public_ip']

View file

@ -24,6 +24,7 @@ setup(name='bootstrap-vz',
'jsonschema >= 2.3.0', 'jsonschema >= 2.3.0',
'pyyaml >= 3.10', 'pyyaml >= 3.10',
'boto >= 2.14.0', 'boto >= 2.14.0',
'boto3 >= 1.4.2',
'docopt >= 0.6.1', 'docopt >= 0.6.1',
'pyrfc3339 >= 1.0', 'pyrfc3339 >= 1.0',
'requests >= 2.4.3', 'requests >= 2.4.3',