-
Notifications
You must be signed in to change notification settings - Fork 115
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
Pin isort and revert pylint #225
Conversation
], | ||
extras_require={ | ||
":python_version<'3.0'": ['pylint==1.9.2', 'futures'], | ||
":python_version>='3.0'": ['pylint==2.5.3'] | ||
":python_version>='3.0'": ['pylint==2.3.0'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to release new azdev since the released version is also broken?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Luckily we currently use the main
branch of azdev
in Azure CLI CI so the fix will applied. But yes, we do need to release a new version of azdev
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version pin issue may exist in other third-party packages, we should look through and pin all of them.
we need to add release note in history.rst |
The " |
Pin
isort
and revertpylint
update (#224).No matter whether we use the
main
branch ofazdev
or the released version on PyPI,pylint
will crash withAttributeError: module 'isort' has no attribute 'SortImports'
, butazdev
can't detect that (another bug). In such case,pylint
doesn't work at all, giving a false positive indicating the style check passed.