Skip to content

Commit 13fdf72

Browse files
renovate-botgguuss
authored andcommitted
chore(deps): update dependency cryptography to v2.8 (#2655)
* chore(deps): update dependency cryptography to v2.8
1 parent ab9b402 commit 13fdf72

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

iot/api-client/gcs_file_to_device/gcs_send_to_device_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ def test_blob():
5656
yield blob
5757

5858
# Clean up
59-
blob.delete()
59+
try:
60+
blob.delete()
61+
except: # noqa
62+
pass
6063

6164

6265
@mock.patch('google.cloud.storage.client.Client.create_bucket')

iot/api-client/gcs_file_to_device/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ google-auth-httplib2==0.0.3
44
google-cloud-iot==0.3.0
55
google-cloud-pubsub==1.0.0
66
google-cloud-storage==1.19.1
7-
cryptography==2.7
7+
cryptography==2.8
88
paho-mqtt==1.4.0
99
pyjwt==1.7.1

iot/api-client/mqtt_example/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cryptography==2.7
1+
cryptography==2.8
22
flaky==3.6.1
33
gcp-devrel-py-tools==0.0.15
44
google-api-python-client==1.7.11

0 commit comments

Comments
 (0)