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
I'm opening this issue because https://github.com/shopify/panama python client depends on shopify_python and there's a dependency issue on pylint v2.1.1 that I think needs to be fixed here
I'm opening this issue because https://github.com/shopify/panama python client depends on
shopify_python
and there's a dependency issue onpylint v2.1.1
that I think needs to be fixed hereCurrently shopify_python requires pylint ~= 2.1.1. But,
pylint
v2.1.1 has this dependency issue on'isort >= 4.2.5
. There's no dependency constraint there, so eventuallyisort
releasedv5
. pylint 2.1.1 picks up the new version and breaks.pylint
fixed this by pinning their dependencies, likeisort>=4.2.5,<5
More recently,
pylint 2.6.0
supportsisort v5
pylint-dev/pylint#3725Let's upgrade pylint to the newest version and use a compatible release on major version rather than minor
i.e.,
pylint ~= 2.1
as opposed topylint ~= 2.1.1
The text was updated successfully, but these errors were encountered: