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
I had to patch nose for django 2.2 on python 3.11 -
# patch for nose (django-nose) for py3.11 import collections collections.Callable = collections.abc.Callable # End of patch
collections.Callable has a new location.
The text was updated successfully, but these errors were encountered:
where did you put that code? I'm having the same problem i suppose: AttributeError: module 'collections' has no attribute 'Callable'
AttributeError: module 'collections' has no attribute 'Callable'
Sorry, something went wrong.
Need to put the code in the top of the test case file
unfortunately this is a bug do "nose". And apparently the project has not been updated for some long years.
In this case, I don't know what the guidelines are on how to fix django-nose. monkey patch?
No branches or pull requests
I had to patch nose for django 2.2 on python 3.11 -
collections.Callable has a new location.
The text was updated successfully, but these errors were encountered: