Skip to content

Commit e0ebd5b

Browse files
author
Jon Wayne Parrott
committed
Moving reqcheck/update into nox. Updating requirements.
1 parent 96e9daf commit e0ebd5b

File tree

18 files changed

+47
-179
lines changed

18 files changed

+47
-179
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pip-delete-this-directory.txt
1414
# Unit test / coverage reports
1515
htmlcov/
1616
.tox/
17+
.nox/
1718
.coverage
1819
.coverage.*
1920
.cache

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ env:
66
before_install:
77
- openssl aes-256-cbc -K $encrypted_b4c8e1c51f6e_key -iv $encrypted_b4c8e1c51f6e_iv -in secrets.tar.enc -out secrets.tar -d
88
- tar xvf secrets.tar
9-
- pip install tox
9+
- pip install nox-automation tox
1010
script:
11-
- tox
11+
- nox --session reqcheck
1212
- cd $TRAVIS_BUILD_DIR/1-hello-world && tox
1313
- cp $TRAVIS_BUILD_DIR/config.py $TRAVIS_BUILD_DIR/2-structured-data && cd $TRAVIS_BUILD_DIR/2-structured-data
1414
&& tox

2-structured-data/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Flask==0.10.1
22
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==2.0.0.post1
4+
oauth2client==2.0.1
55
Flask-SQLAlchemy==2.1
66
PyMySQL==0.7.2
7-
Flask-PyMongo==0.4.0
7+
Flask-PyMongo==0.4.1
88
PyMongo==3.2.1
99
six==1.10.0

3-binary-data/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Flask==0.10.1
22
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==2.0.0.post1
4+
oauth2client==2.0.1
55
Flask-SQLAlchemy==2.1
66
PyMySQL==0.7.2
7-
Flask-PyMongo==0.4.0
7+
Flask-PyMongo==0.4.1
88
PyMongo==3.2.1
99
six==1.10.0

4-auth/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Flask==0.10.1
22
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==2.0.0.post1
4+
oauth2client==2.0.1
55
Flask-SQLAlchemy==2.1
66
PyMySQL==0.7.2
7-
Flask-PyMongo==0.4.0
7+
Flask-PyMongo==0.4.1
88
PyMongo==3.2.1
99
six==1.10.0

5-logging/bookshelf/__init__.py

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

1818
from flask import current_app, Flask, redirect, request, session, url_for
1919
import httplib2
20-
from oauth2client.flask_util import UserOAuth2
20+
from oauth2client.contrib.flask_util import UserOAuth2
2121

2222

2323
oauth2 = UserOAuth2()

5-logging/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Flask==0.10.1
2-
gcloud==0.9.0
2+
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==1.5.2
4+
oauth2client==2.0.1
55
Flask-SQLAlchemy==2.1
6-
PyMySQL==0.7.1
7-
Flask-PyMongo==0.4.0
6+
PyMySQL==0.7.2
7+
Flask-PyMongo==0.4.1
88
PyMongo==3.2.1
99
six==1.10.0

6-pubsub/bookshelf/__init__.py

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

1818
from flask import current_app, Flask, redirect, request, session, url_for
1919
import httplib2
20-
from oauth2client.flask_util import UserOAuth2
20+
from oauth2client.contrib.flask_util import UserOAuth2
2121

2222

2323
oauth2 = UserOAuth2()

6-pubsub/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Flask==0.10.1
2-
gcloud==0.9.0
2+
gcloud==0.10.1
33
gunicorn==19.4.5
4-
oauth2client==1.5.2
4+
oauth2client==2.0.1
55
Flask-SQLAlchemy==2.1
6-
PyMySQL==0.7.1
7-
Flask-PyMongo==0.4.0
6+
PyMySQL==0.7.2
7+
Flask-PyMongo==0.4.1
88
PyMongo==3.2.1
99
six==1.10.0
1010
requests[security]==2.9.1

7-gce/bookshelf/__init__.py

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

1818
from flask import current_app, Flask, redirect, request, session, url_for
1919
import httplib2
20-
from oauth2client.flask_util import UserOAuth2
20+
from oauth2client.contrib.flask_util import UserOAuth2
2121

2222

2323
oauth2 = UserOAuth2()

0 commit comments

Comments
 (0)