From bd07aa97a77c13f1e6dcd449631f01d21b1900df Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Wed, 19 Oct 2016 10:39:22 +0100 Subject: [PATCH] remove monotonic as a dependency "On Python 3.3 or newer, monotonic will be an alias of time.monotonic from the standard library" --- app/__init__.py | 2 +- requirements.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index 9fb6999c7..6d7cff0dc 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -23,7 +23,7 @@ from flask_login import LoginManager from flask_wtf import CsrfProtect from functools import partial -from monotonic import monotonic +from time import monotonic from notifications_python_client.errors import HTTPError from notifications_utils import logging from notifications_utils.recipients import validate_phone_number, InvalidPhoneError diff --git a/requirements.txt b/requirements.txt index 09fb12758..3fad677df 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,6 @@ boto3==1.3.0 Pygments==2.0.2 py-gfm==0.1.2 blinker==1.4 -monotonic==0.3 lxml==3.6.0 pyexcel==0.2.1 pyexcel-io==0.1.0