From 6ec0d4e1ff7d9d05422d2ad70fed19fd0af7abc4 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Tue, 3 Jun 2025 14:00:12 +1000 Subject: [PATCH] Fix pyinotify dependency to work with latest pythons - pyinotify is not working anymore since it needs asyncore which has been removed from the standard library - Someone created pyinotify-elephant-fork to superseed pyinotify --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e481260..df1fcdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "pexpect==4.8.0", "pillow==10.0.0", "pygments==2.16.1", - "pyinotify==0.9.6", + "pyinotify-elephant-fork==0.0.1", "termstr", "toml==0.10.2", ]