diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4693979..22718b3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,12 @@ Changelog sisyphus-control ++++++++++++++++ +[3.1.2] - 2021-12-13 +==================== +Changed +------- +* Relax version requirements for socketio/engineio + [3.1.1] - 2021-10-21 ==================== Changed @@ -132,4 +138,4 @@ Changed ==================== Just getting this code out there. I've done some manual testing locally but haven't yet dreamt up a reasonable way to -automate the tests. Next step is to hook this in to Home Assistant! \ No newline at end of file +automate the tests. Next step is to hook this in to Home Assistant! diff --git a/setup.py b/setup.py index b6d2877..22f0dee 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="sisyphus-control", - version="3.1.1", + version="3.1.2", description="Control your Sisyphus kinetic art tables " "(sisyphus-industries.com)", long_description=long_description, @@ -31,8 +31,8 @@ install_requires=[ "aiohttp", "netifaces", - "python-socketio==4.6.1", - "python-engineio==3.14.2" + "python-socketio>=4.0,<5.0", + "python-engineio>=3.0,<4.0" ], python_requires=">=3.8", )