From f7f9d67d376c470badb9c6da0134f85f1e6f034e Mon Sep 17 00:00:00 2001 From: Rogier van Staveren Date: Tue, 21 May 2024 03:12:11 +0200 Subject: [PATCH] Replace pyserial-asyncio with pyserial-asyncio-fast --- pyproject.toml | 2 +- xyscreens/xyscreens.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9098a1c..f16ea80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ classifiers = [ ] dependencies = [ "pyserial>=3.5", - "pyserial_asyncio>=0.6" + "pyserial-asyncio-fast>=0.11" ] [project.urls] diff --git a/xyscreens/xyscreens.py b/xyscreens/xyscreens.py index b307644..1337d45 100644 --- a/xyscreens/xyscreens.py +++ b/xyscreens/xyscreens.py @@ -14,7 +14,7 @@ from typing import Any, Tuple import serial -import serial_asyncio +import serial_asyncio_fast as serial_asyncio logger = logging.getLogger(__name__)