Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott committed Feb 1, 2016
1 parent b00f1dc commit 3ed050a
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def list_all_posts(ds):


def main(project_id):
ds = datastore.Client(dataset_id=project_id)
ds = datastore.Client(project_id)

print("Creating users...")
create_user(ds, 'tonystark',
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gcloud==0.8.0
gcloud==0.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def list_revisions(ds, page):


def main(project_id):
ds = datastore.Client(dataset_id=project_id)
ds = datastore.Client(project_id)

save_page(ds, 'page1', '1')
save_page(ds, 'page1', '2')
Expand Down
2 changes: 1 addition & 1 deletion container_engine/django_tutorial/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==1.9.1
Django==1.9.2
mysqlclient==1.3.7
wheel==0.26.0
gunicorn==19.4.5
2 changes: 1 addition & 1 deletion managed_vms/datastore/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==0.10.1
gcloud==0.8.0
gcloud==0.9.0
gunicorn==19.4.5
oauth2client==1.5.2
2 changes: 1 addition & 1 deletion managed_vms/django_cloudsql/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==1.9.1
Django==1.9.2
mysqlclient==1.3.7
wheel==0.26.0
gunicorn==19.4.5
2 changes: 1 addition & 1 deletion managed_vms/hello_world_django/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django==1.9.1
Django==1.9.2
gunicorn==19.4.5
2 changes: 1 addition & 1 deletion managed_vms/pubsub/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==0.10.1
gcloud==0.8.0
gcloud==0.9.0
gunicorn==19.4.5
oauth2client==1.5.2
2 changes: 1 addition & 1 deletion managed_vms/storage/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Flask==0.10.1
gcloud==0.8.0
gcloud==0.9.0
gunicorn==19.4.5
2 changes: 1 addition & 1 deletion managed_vms/twilio/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Flask==0.10.1
gunicorn==19.4.5
twilio==6.2.dev0
twilio==6.3.dev0
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ nose-timer==0.5.0
Flask-SQLAlchemy==2.0
PyMySQL==0.6.6
python-memcached==1.57
PyCrypto==2.6.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gcloud==0.8.0
gcloud==0.9.0
google-api-python-client==1.4.2
oauth2client==1.5.2
requests[security]==2.9.1
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ deps =
commands =
bash -c "find . -name requirements.txt |\
xargs -n 1 ./scripts/check_requirements.py"
whitelist_externals = bash

[testenv:requpdate]
deps =
requests[security]
commands =
bash -c "find . -name requirements.txt |\
xargs -n 1 ./scripts/update_requirements.py"
whitelist_externals = bash

[testenv:gae]
deps =
Expand Down

0 comments on commit 3ed050a

Please sign in to comment.