Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3ed050a

Browse filesBrowse files
author
Jon Wayne Parrott
committed
Updating dependencies
1 parent b00f1dc commit 3ed050a
Copy full SHA for 3ed050a

File tree

Expand file treeCollapse file tree

13 files changed

+14
-11
lines changed
Filter options
Expand file treeCollapse file tree

13 files changed

+14
-11
lines changed

‎blog/introduction_to_data_models_in_cloud_datastore/blog.py

Copy file name to clipboardExpand all lines: blog/introduction_to_data_models_in_cloud_datastore/blog.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def list_all_posts(ds):
7676

7777

7878
def main(project_id):
79-
ds = datastore.Client(dataset_id=project_id)
79+
ds = datastore.Client(project_id)
8080

8181
print("Creating users...")
8282
create_user(ds, 'tonystark',
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
gcloud==0.8.0
1+
gcloud==0.9.0

‎blog/introduction_to_data_models_in_cloud_datastore/wiki.py

Copy file name to clipboardExpand all lines: blog/introduction_to_data_models_in_cloud_datastore/wiki.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def list_revisions(ds, page):
7272

7373

7474
def main(project_id):
75-
ds = datastore.Client(dataset_id=project_id)
75+
ds = datastore.Client(project_id)
7676

7777
save_page(ds, 'page1', '1')
7878
save_page(ds, 'page1', '2')
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.9.1
1+
Django==1.9.2
22
mysqlclient==1.3.7
33
wheel==0.26.0
44
gunicorn==19.4.5
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.10.1
2-
gcloud==0.8.0
2+
gcloud==0.9.0
33
gunicorn==19.4.5
44
oauth2client==1.5.2
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.9.1
1+
Django==1.9.2
22
mysqlclient==1.3.7
33
wheel==0.26.0
44
gunicorn==19.4.5
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django==1.9.1
1+
Django==1.9.2
22
gunicorn==19.4.5

‎managed_vms/pubsub/requirements.txt

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Flask==0.10.1
2-
gcloud==0.8.0
2+
gcloud==0.9.0
33
gunicorn==19.4.5
44
oauth2client==1.5.2

‎managed_vms/storage/requirements.txt

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==0.10.1
2-
gcloud==0.8.0
2+
gcloud==0.9.0
33
gunicorn==19.4.5

‎managed_vms/twilio/requirements.txt

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==0.10.1
22
gunicorn==19.4.5
3-
twilio==6.2.dev0
3+
twilio==6.3.dev0

‎requirements-dev.txt

Copy file name to clipboardExpand all lines: requirements-dev.txt
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ nose-timer==0.5.0
1919
Flask-SQLAlchemy==2.0
2020
PyMySQL==0.6.6
2121
python-memcached==1.57
22+
PyCrypto==2.6.1

‎requirements.txt

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gcloud==0.8.0
1+
gcloud==0.9.0
22
google-api-python-client==1.4.2
33
oauth2client==1.5.2
44
requests[security]==2.9.1

‎tox.ini

Copy file name to clipboardExpand all lines: tox.ini
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ deps =
2121
commands =
2222
bash -c "find . -name requirements.txt |\
2323
xargs -n 1 ./scripts/check_requirements.py"
24+
whitelist_externals = bash
2425

2526
[testenv:requpdate]
2627
deps =
2728
requests[security]
2829
commands =
2930
bash -c "find . -name requirements.txt |\
3031
xargs -n 1 ./scripts/update_requirements.py"
32+
whitelist_externals = bash
3133

3234
[testenv:gae]
3335
deps =

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.