We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, the version of pyinotify specified in requirements.txt (https://github.com/archlinux/archweb/blob/master/requirements_prod.txt#L2) is not Python 3.12 compatible, it tries to import asyncore but this doesn't exist anymore (ModuleNotFoundError: No module named 'asyncore').
asyncore
ModuleNotFoundError: No module named 'asyncore'
In Arch Linux packaging this was patched https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyinotify/-/commit/df875e727a19fb9e83d2af55cc5f368b94eec705 but if installed in a venv via PyPI this patch is not present of course.
Maybe it's time to do something about this dependency that wasn't updated in 9 years? https://github.com/seb-m/pyinotify/commits/master/
For now I'll patch it in the venv using the patch from the repo package, not sure what the best path forward is long-term.
The text was updated successfully, but these errors were encountered:
Yes, we should switch as we also run it from a venv in production 😅
It is forked into seb-m/pyinotify#204
I'll look for some other alternatives.
Sorry, something went wrong.
Related commit: 4355b0f
No branches or pull requests
Hi, the version of pyinotify specified in requirements.txt (https://github.com/archlinux/archweb/blob/master/requirements_prod.txt#L2) is not Python 3.12 compatible, it tries to import
asyncore
but this doesn't exist anymore (ModuleNotFoundError: No module named 'asyncore'
).In Arch Linux packaging this was patched https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyinotify/-/commit/df875e727a19fb9e83d2af55cc5f368b94eec705 but if installed in a venv via PyPI this patch is not present of course.
Maybe it's time to do something about this dependency that wasn't updated in 9 years? https://github.com/seb-m/pyinotify/commits/master/
For now I'll patch it in the venv using the patch from the repo package, not sure what the best path forward is long-term.
The text was updated successfully, but these errors were encountered: