Skip to content

Commit 1c7e4ac

Browse files
committed
fix: lock aiohttp version
1 parent 635ece3 commit 1c7e4ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ pytest-asyncio = "*"
1313
[packages]
1414
twilio = "==6.54.0"
1515
signalwire = {editable = true,path = "."}
16-
aiohttp = "*"
16+
aiohttp = "3.9.5"
1717

1818
[requires]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_version():
4040
packages=find_packages(exclude=['tests', 'tests.*']),
4141
install_requires=[
4242
'twilio==6.54.0',
43-
'aiohttp',
43+
'aiohttp==3.9.5',
4444
],
4545
python_requires='>=3.6',
4646
zip_safe=False

signalwire/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "signalwire"
22

3-
__version__ = '2.1.0'
3+
__version__ = '2.1.1'

0 commit comments

Comments
 (0)