Skip to content

Commit bb68011

Browse files
committed
CI: Skip installing and testing twilio on Python 3.12
1 parent f5a09eb commit bb68011

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
if machine in ["armv7l"] and extra in ["apprise", "twilio"]:
145145
continue
146146

147+
# FIXME: aiohttp (needed by twilio) is not available for Python 3.12 yet.
148+
if sys.version_info >= (3, 12) and extra in ["twilio"]:
149+
continue
150+
147151
for package in packages:
148152
extras_all.append(package)
149153

0 commit comments

Comments
 (0)