Merge pull request #659 from alphagov/update-requirements

Update requirements
This commit is contained in:
Rebecca Law
2016-09-06 14:16:31 +01:00
committed by GitHub
3 changed files with 11 additions and 13 deletions

View File

@@ -1,8 +1,6 @@
![](https://travis-ci.org/alphagov/notifications-api.svg) ![](https://travis-ci.org/alphagov/notifications-api.svg)
[![Requirements Status](https://requires.io/github/alphagov/notifications-api/requirements.svg?branch=master)](https://requires.io/github/alphagov/notifications-api/requirements/?branch=master) [![Requirements Status](https://requires.io/github/alphagov/notifications-api/requirements.svg?branch=master)](https://requires.io/github/alphagov/notifications-api/requirements/?branch=master)
[![Deploy to staging](https://notify-build-monitor.herokuapp.com/deploys/notifications-api/master...staging.svg?prefix=Deploy%20to)](https://github.com/alphagov/notifications-api/compare/staging...master?expand=1&title=Deploy%20to%20staging) [![Deploy to live](https://notify-build-monitor.herokuapp.com/deploys/notifications-api/staging...live.svg?prefix=Deploy%20to)](https://github.com/alphagov/notifications-api/compare/live...staging?expand=1&title=Deploy%20to%20live)
# notifications-api # notifications-api
Notifications api Notifications api
Application for the notification api. Application for the notification api.

View File

@@ -1,25 +1,25 @@
apispec==0.12.0 apispec==0.14.0
bleach==1.4.3 bleach==1.4.3
Flask==0.10.1 Flask==0.10.1
Flask-Script==2.0.5 Flask-Script==2.0.5
Flask-Migrate==1.3.1 Flask-Migrate==1.3.1
Flask-SQLAlchemy==2.0 Flask-SQLAlchemy==2.0
psycopg2==2.6.1 psycopg2==2.6.2
SQLAlchemy==1.0.5 SQLAlchemy==1.0.15
SQLAlchemy-Utils==0.30.5 SQLAlchemy-Utils==0.32.9
PyJWT==1.4.0 PyJWT==1.4.2
marshmallow==2.4.2 marshmallow==2.4.2
marshmallow-sqlalchemy==0.8.0 marshmallow-sqlalchemy==0.8.0
flask-marshmallow==0.6.2 flask-marshmallow==0.6.2
Flask-Bcrypt==0.6.2 Flask-Bcrypt==0.6.2
credstash==1.8.0 credstash==1.8.0
boto3==1.2.3 boto3==1.4.0
boto==2.39.0 boto==2.42.0
celery==3.1.20 celery==3.1.23
monotonic==0.3 monotonic==1.2
statsd==3.2.1 statsd==3.2.1
git+https://github.com/alphagov/notifications-python-client.git@1.0.0#egg=notifications-python-client==1.0.0 git+https://github.com/alphagov/notifications-python-client.git@1.2.0#egg=notifications-python-client==1.2.0
git+https://github.com/alphagov/notifications-utils.git@9.0.1#egg=notifications-utils==9.0.1 git+https://github.com/alphagov/notifications-utils.git@9.0.1#egg=notifications-utils==9.0.1

View File

@@ -11,7 +11,7 @@ from app.celery.scheduled_tasks import (delete_verify_codes,
run_scheduled_jobs) run_scheduled_jobs)
from app.dao.jobs_dao import dao_get_job_by_id from app.dao.jobs_dao import dao_get_job_by_id
from tests.app.conftest import sample_notification, sample_job from tests.app.conftest import sample_notification, sample_job
from mock import call from unittest.mock import call
def test_should_have_decorated_tasks_functions(): def test_should_have_decorated_tasks_functions():