From 09a9fbb052483cb96c7283cdbcc44bc57a8e078e Mon Sep 17 00:00:00 2001 From: Sebastian Fitt Date: Sat, 8 Apr 2023 18:24:23 +0200 Subject: [PATCH] fix: pyserial is the correct dep, not serial * fix: remove duplicated requests dep --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ce7336e..354d688 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,18 +9,17 @@ repository = "https://github.com/RedHawk989/EyeTrackVR" [tool.poetry.dependencies] python = "~3.10.0" python-osc = "^1.8.0" -requests = "^2.28.0" +requests = "^2.28.1" opencv-python = "^4.6.0.66" numpy = "~1.23.5" pye3d = "^0.3.1.post1" pysimplegui = "^4.60.4" pydantic = "^1.10.2" -requests = "~2.2.8.2" +pyserial = "^3.5" winotify = [ { version = "^1.1.0", platform = 'win32' } ] onnxruntime = "^1.13.1" -serial = "~0.0.97" [tool.poetry.group.dev.dependencies] black = "^22.10.0" pyinstaller = "^5.6.2"