Skip to content

Commit daba765

Browse files
committed
Migrate to serialx
1 parent 63ea14f commit daba765

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

plugwise_usb/connection/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import logging
88
from typing import Any
99

10-
from serial import EIGHTBITS, PARITY_NONE, STOPBITS_ONE, SerialException
11-
from serial_asyncio_fast import SerialTransport, create_serial_connection
10+
from serial import EIGHTBITS, PARITY_NONE, STOPBITS_ONE,
11+
from serialx import SerialException, SerialTransport, create_serial_connection
1212

1313
from ..api import StickEvent
1414
from ..exceptions import StickError

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ maintainers = [
2727
]
2828
requires-python = ">=3.13.0"
2929
dependencies = [
30-
"pyserial-asyncio-fast",
3130
"aiofiles",
3231
"crcmod",
3332
"semver",
33+
"serialx",
3434
]
3535

3636
[project.urls]

requirements_test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pytest-asyncio
55
radon==6.0.1
66
types-python-dateutil
7-
pyserial-asyncio-fast
87
aiofiles
98
freezegun
109
pytest-cov
10+
serialx

0 commit comments

Comments
 (0)