Updating requirements.

This commit is contained in:
Samuel Clay 2013-06-14 12:29:19 -07:00
parent 7e325afd9c
commit debd7f858f
2 changed files with 5 additions and 4 deletions

View file

@ -19,7 +19,7 @@ httplib2==0.8
iconv==1.0
kombu==2.5.7
lxml==3.1.0
mongoengine==0.7.9
mongoengine==0.8.2
nltk==2.0.4
oauth2==1.5.211
PIL==1.1.7

7
fabfile.py vendored
View file

@ -75,8 +75,9 @@ def do_roledefs(split=False):
return droplets
def list_do():
do(split=True)
pprint(env.roledefs)
droplets = do(split=True)
pprint(droplets)
def host(*names):
env.hosts = []
@ -906,7 +907,7 @@ def copy_task_settings():
def setup_do(name, size=2):
INSTANCE_SIZE = "%sGB" % size
IMAGE_NAME = "Ubuntu 12.10 x64 Server"
IMAGE_NAME = "Ubuntu 13.04 x64 Server"
doapi = dop.client.Client(django_settings.DO_CLIENT_KEY, django_settings.DO_API_KEY)
sizes = dict((s.name, s.id) for s in doapi.sizes())
size_id = sizes[INSTANCE_SIZE]