From 28a341ac28ec92d30933b0e5de4fa3ffe0a85eef Mon Sep 17 00:00:00 2001 From: C0co <6054234+Phil1988@users.noreply.github.com> Date: Sat, 16 May 2026 14:51:46 +0200 Subject: [PATCH] Add pyserial dependency to pyproject.toml Users with pyserial v3.5 constantly being downgraded - likely because of aiomysql -> pymysql -> pyserial constrains. This downgrade causes issues on my software, so users upgrade pyserial again to v3.5 and everything (also spoolman) is working. Added pyserial to the dependencies to avoid this. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index f6229db47..16ce1a075 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ dependencies = [ "httpx~=0.28", "hishel~=0.1", "aiomysql[rsa]~=0.3", + "pyserial>=3.5", ] requires-python = ">=3.10"