Skip to content

Commit 770f533

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 c080bb4 commit 770f533

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

Pipfile

+2-1
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

+6-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

+2-1
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',
4342
'aiohttp',
43+
'six',
44+
'twilio>=7.0.0,<7.6.0',
4445
],
4546
python_requires='>=3.9',
4647
zip_safe=False

0 commit comments

Comments
 (0)