Skip to content

Commit 0a3aacf

Browse files
committed
Fix issues caused by removal of Twilio Fax support
Fax module was removed in Twilio 7.6.0 so pinning it before that.
1 parent d2febfc commit 0a3aacf

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

Pipfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ vcrpy = "*"
1313
[packages]
1414
aiohttp = "*"
1515
signalwire = {editable = true,path = "."}
16-
twilio = "*"
16+
six = "*"
17+
twilio = ">=7.0.0,<7.6.0"
1718

1819
[requires]

Pipfile.lock

Lines changed: 6 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ def get_version():
3939
license='MIT',
4040
packages=find_packages(exclude=['tests', 'tests.*']),
4141
install_requires=[
42-
'twilio',
42+
'twilio>=7.0.0,<7.6.0',
4343
'aiohttp',
44+
'six',
4445
],
4546
python_requires='>=3.9',
4647
zip_safe=False

0 commit comments

Comments
 (0)