Browse Source

Merge pull request #445 from github/dependabot/pip/botocore-1.14.0

Bump botocore from 1.10.5 to 1.14.0
pull/454/head
Ross McFarland 6 years ago
committed by GitHub
parent
commit
e38a1fbdc8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions
  1. +2
    -2
      requirements.txt
  2. +2
    -3
      tests/test_octodns_provider_route53.py

+ 2
- 2
requirements.txt View File

@ -1,8 +1,8 @@
PyYaml==4.2b1
azure-common==1.1.23
azure-mgmt-dns==3.0.0
boto3==1.7.5
botocore==1.10.5
boto3==1.11.0
botocore==1.14.0
dnspython==1.15.0
docutils==0.14
dyn==1.8.1


+ 2
- 3
tests/test_octodns_provider_route53.py View File

@ -1930,9 +1930,8 @@ class TestRoute53Provider(TestCase):
provider = Route53Provider('test', 'abc', '123',
client_max_attempts=42)
# NOTE: this will break if boto ever changes the impl details...
self.assertEquals(43, provider._conn.meta.events
._unique_id_handlers['retry-config-route53']
['handler']._checker.__dict__['_max_attempts'])
self.assertEquals(42, provider._conn._client_config
.retries['max_attempts'])
def test_data_for_dynamic(self):
provider = Route53Provider('test', 'abc', '123')


Loading…
Cancel
Save