Skip to content

Commit

Permalink
Merge pull request #32 from bdraco/socketio_v4
Browse files Browse the repository at this point in the history
Switch to socketio_v4
  • Loading branch information
lawtancool authored Aug 28, 2024
2 parents a8fde4a + 3ab69ba commit ed4e8dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyControl4/websocket.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Handles Websocket connections to a Control4 Director, allowing for real-time updates using callbacks."""
import aiohttp
import async_timeout
import socketio
import socketio_v4 as socketio
import logging

from .error_handling import checkResponseForError
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiohttp
async_timeout
xmltodict
python-socketio>=4,<5
python-socketio-v4
websocket-client
pdoc3
pdoc3
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp
async_timeout
xmltodict
python-socketio>=4,<5
python-socketio-v4
websocket-client
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
install_requires=[
'aiohttp',
'xmltodict',
'python-socketio>=4,<5',
'python-socketio-v4',
'websocket-client',
],
)

0 comments on commit ed4e8dc

Please sign in to comment.