From a9e092732add14a95cd9ad1d54d348b51db47f86 Mon Sep 17 00:00:00 2001 From: Randall Degges Date: Thu, 8 Jun 2017 09:11:41 -0700 Subject: [PATCH] Requiring twilio 6.3.0 minimum going forward. Thanks to @wbt's PR, we now work properly with the latest twilio release. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 677cb9e..e0bae03 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals, absolute_import - from os.path import abspath, dirname, join, normpath from setuptools import find_packages, setup @@ -19,7 +18,7 @@ # Package dependencies: install_requires=[ - 'twilio>=3.6.9', + 'twilio>=6.3.0', 'Django>=1.4', 'django-phonenumber-field>=0.6' ],