Skip to content

Commit

Permalink
Use version ranges instead of exact versions for socketio and engineio
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeljo committed Dec 13, 2021
1 parent 1324522 commit 5f53068
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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!
automate the tests. Next step is to hook this in to Home Assistant!
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
)

0 comments on commit 5f53068

Please sign in to comment.