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
This commit is contained in:
Andrew Hamilton 2025-06-03 14:00:12 +10:00
parent 65666648ac
commit 6ec0d4e1ff

View file

@ -17,7 +17,7 @@ dependencies = [
"pexpect==4.8.0", "pexpect==4.8.0",
"pillow==10.0.0", "pillow==10.0.0",
"pygments==2.16.1", "pygments==2.16.1",
"pyinotify==0.9.6", "pyinotify-elephant-fork==0.0.1",
"termstr", "termstr",
"toml==0.10.2", "toml==0.10.2",
] ]