Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
Updates to the latest Botocore and JMESPath, taking into account the backward-
incompatible waiter change.
  • Loading branch information
danielgtaylor committed Nov 19, 2014
1 parent 6298b10 commit a12542f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions boto3/docs.py
Expand Up @@ -144,12 +144,11 @@ def document_client(service_name, official_name, service_model):
region_name='us-east-1')

wdoc = ''
waiters = client.all_waiters()
if waiters:
if client.waiter_names:
# This gets included in alphabetical order below!
wdoc += ' .. py:method:: get_waiter(name)\n\n'
wdoc += ' Get a waiter by name. Available waiters:\n\n'
for waiter in waiters:
for waiter in client.waiter_names:
wdoc += ' * {0}\n'.format(waiter)
wdoc += '\n'

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
@@ -1,6 +1,6 @@
botocore==0.68.0
botocore==0.73.0
bcdoc==0.12.2
jmespath==0.4.1
jmespath==0.5.0
six==1.7.3
nose==1.3.3
mock==1.0.1
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -26,9 +26,9 @@ def get_version():
]

requires = [
'botocore==0.68.0',
'botocore==0.73.0',
'bcdoc==0.12.2',
'jmespath==0.4.1',
'jmespath==0.5.0',
'six==1.7.3',
]

Expand Down

0 comments on commit a12542f

Please sign in to comment.