Skip to content

Commit 2d52555

Browse files
authored
Merge pull request GoogleCloudPlatform#89 from GoogleCloudPlatform/google-cloud
Move to google-cloud
2 parents 0708a0c + 9001cab commit 2d52555

37 files changed

+41
-43
lines changed

2-structured-data/bookshelf/model_datastore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
from flask import current_app
16-
from gcloud import datastore
16+
from google.cloud import datastore
1717

1818

1919
builtin_list = list

2-structured-data/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Flask==0.11.1
2-
gcloud==0.18.1
2+
google-cloud==0.19.0
33
gunicorn==19.6.0
44
oauth2client==3.0.0
55
Flask-SQLAlchemy==2.1

2-structured-data/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import bookshelf
1818
import config
19-
from gcloud.exceptions import ServiceUnavailable
19+
from google.cloud.exceptions import ServiceUnavailable
2020
from oauth2client.client import HttpAccessTokenRefreshError
2121
import pytest
2222
from retrying import retry

2-structured-data/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ deps =
2020
flake8
2121
flake8-import-order
2222
commands =
23-
flake8 --exclude=env --import-order-style=google
23+
flake8 --import-order-style=google bookshelf tests

3-binary-data/bookshelf/model_datastore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
from flask import current_app
16-
from gcloud import datastore
16+
from google.cloud import datastore
1717

1818

1919
builtin_list = list

3-binary-data/bookshelf/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import datetime
1818

1919
from flask import current_app
20-
from gcloud import storage
20+
from google.cloud import storage
2121
import six
2222
from werkzeug import secure_filename
2323
from werkzeug.exceptions import BadRequest

3-binary-data/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Flask==0.11.1
2-
gcloud==0.18.1
2+
google-cloud==0.19.0
33
gunicorn==19.6.0
44
oauth2client==3.0.0
55
Flask-SQLAlchemy==2.1

3-binary-data/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import bookshelf
1818
import config
19-
from gcloud.exceptions import ServiceUnavailable
19+
from google.cloud.exceptions import ServiceUnavailable
2020
from oauth2client.client import HttpAccessTokenRefreshError
2121
import pytest
2222
from retrying import retry

3-binary-data/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ deps =
2020
flake8
2121
flake8-import-order
2222
commands =
23-
flake8 --exclude=env --import-order-style=google
23+
flake8 --import-order-style=google bookshelf tests

4-auth/bookshelf/model_datastore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
from flask import current_app
16-
from gcloud import datastore
16+
from google.cloud import datastore
1717

1818

1919
builtin_list = list

0 commit comments

Comments
 (0)