-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to asyncio Protocol instead of reader/writer (#11)
* Move to asyncio Protocol instead of reader/writer * Fix _on_connection_lost * Update on PR * Pre-commit update * Increased the version * create explicit copy of data bytes Co-authored-by: Thijs Walcarius <[email protected]> Co-authored-by: cereal2nd <[email protected]>
- Loading branch information
1 parent
0a5cfec
commit cb64dd6
Showing
22 changed files
with
482 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
pyserial-asyncio | ||
backoff>=1.10.0 | ||
backoff>=1.10.0,<1.11 | ||
pyserial==3.5.0 | ||
pyserial-asyncio>=0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,15 @@ | |
|
||
setup( | ||
name="velbus-aio", | ||
version="2021.9.4", | ||
version="2021.10.1", | ||
url="https://github.com/Cereal2nd/velbus-aio", | ||
license="MIT", | ||
author="Maikel Punie", | ||
install_requires=["pyserial-asyncio"], | ||
install_requires=[ | ||
"pyserial==3.5.0", | ||
"pyserial-asyncio>=0.5", | ||
"backoff>=1.10.0", | ||
], | ||
author_email="[email protected]", | ||
packages=PACKAGES, | ||
include_package_data=True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.