-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clear Linux error #9
Comments
python3 -m pip install aioutils × python setup.py egg_info did not run successfully. note: This error originates from a subprocess, and is likely not a problem with pip. × Encountered error while generating package metadata. note: This is an issue with the package mentioned above, not pip. |
looks like python 3.11 refuses to work with outdated |
Same issue python 3.11. Any resolution? |
It uses outdated modules...i have written own script |
Very nice,.. mind sharing your script? |
Thanks for the report. Yeah it looks like |
We could potentially port to another library like https://github.com/absperf/asyncinotify/ |
So far, my kludge is a custom bash script. Of course, it is a dumb script that needs some manual handling - otherwise it will try to copy all at once to all destinations. Eventually, every major distro will move to 3.11+. It looks like this module is not developed anymore. |
I updated the README to mention this, https://github.com/lmacken/plow#known-issues |
./plow.py
Traceback (most recent call last):
File "/home/hajes/./plow.py", line 16, in
import aionotify
File "/home/hajes/.local/lib/python3.11/site-packages/aionotify/init.py", line 5, in
from .base import Watcher
File "/home/hajes/.local/lib/python3.11/site-packages/aionotify/base.py", line 10, in
from . import aioutils
File "/home/hajes/.local/lib/python3.11/site-packages/aionotify/aioutils.py", line 122, in
@asyncio.coroutine
^^^^^^^^^^^^^^^^^
AttributeError: module 'asyncio' has no attribute 'coroutine'. Did you mean: 'coroutines'?
The text was updated successfully, but these errors were encountered: