You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems pylint-ignore has some old transitive dependencies on wrapt which are making it not work out of the box today after a pip install pylint-ignore or pipx install pylint-ignore.
The text was updated successfully, but these errors were encountered:
We have the astroid dependency, which due to our dependency on pylint<2.13 gives us a restriction on astroid<2.10, which gives us a restriction on wrapt<1.14, which gives us a restriction on ... python<3.11.
Long story short, looks like pylint-ignore is restricted to python 3.10 or earlier for now.
The main change to fix this would be to remove the version restriction pylint<2.13, after which I'd say everything else should fall into place. I put that restriction in there a while ago, due to api changes in pylint that I didn't (and still don't) have the capacity to pull through.
Please let me know, if you have any interest in working on this.
Alternatively, you might direct your efforts toward this issue pylint#5403
Seems pylint-ignore has some old transitive dependencies on wrapt which are making it not work out of the box today after a
pip install pylint-ignore
orpipx install pylint-ignore
.The text was updated successfully, but these errors were encountered: