Bump notifications-utils to 3.7.0

Bumped notifications-utils to 3.7.0. Version 3.7.0 includes the
`convert_utc_to_bst` and `convert_bst_to_utc` functions and the
`LETTER_PROCESSING_DEADLINE` constant, so these have been removed from
this repo and anywhere using these has now been updated to get these
from `notifications-utils`.

Also bumped pytest by a patch version to bring in a bug fix.
This commit is contained in:
Katie Smith
2018-11-26 12:53:39 +00:00
parent 6d8534a8fb
commit ff06d120e8
18 changed files with 27 additions and 55 deletions

View File

@@ -20,6 +20,7 @@ from sqlalchemy.orm import joinedload
from sqlalchemy.sql.expression import case
from sqlalchemy.sql import functions
from notifications_utils.international_billing_rates import INTERNATIONAL_BILLING_RATES
from notifications_utils.timezones import convert_utc_to_bst
from app import db, create_uuid
from app.aws.s3 import remove_s3_object, get_s3_bucket_objects
@@ -48,7 +49,7 @@ from app.models import (
)
from app.dao.dao_utils import transactional
from app.utils import convert_utc_to_bst, get_london_midnight_in_utc
from app.utils import get_london_midnight_in_utc
@statsd(namespace="dao")