From cbb0047905c50a344454f8603ad88b6999179808 Mon Sep 17 00:00:00 2001 From: calebsyring Date: Tue, 31 Oct 2023 13:12:03 -0400 Subject: [PATCH] Allow twilio-python 8+ in setup.py --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e1cdced..e216ccc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,6 @@ Django>=2.2,<4.3 Sphinx>=1.2.0 phonenumbers>=7.0.2 django-phonenumber-field==6.1.0 -twilio>=6.3.0 +twilio>=7 wheel>=0.22.0 setuptools>=36.2 diff --git a/setup.py b/setup.py index 88e558b..e28bfa4 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ # Package dependencies: install_requires=[ 'setuptools>=36.2', - 'twilio>=7,<8', + 'twilio>=7', 'django-phonenumber-field>=0.6', 'phonenumbers>=8.10.22', ] + INSTALL_PYTHON_REQUIRES,