-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
PR: Update minimal required version of pylint to >=2.5.0,<3.1
#21470
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
Changes from all commits
9c86a81
c2ba41d
288e90a
7b15611
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,6 +26,9 @@ if [ "$USE_CONDA" = "true" ]; then | |
| # Remove pylsp before installing its subrepo below | ||
| micromamba remove --force python-lsp-server python-lsp-server-base -y | ||
|
|
||
| # Install Pylint 3 to run our tests with it | ||
| micromamba install pylint=3 -q -y | ||
|
|
||
| else | ||
| # Update pip and setuptools | ||
| python -m pip install -U pip setuptools wheel build | ||
|
|
@@ -42,6 +45,9 @@ else | |
| # To check our manifest | ||
| pip install -q check-manifest | ||
|
|
||
| # Install Pylint 3 to run our tests with it | ||
| pip install -U pylint | ||
|
Comment on lines
+48
to
+49
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And these lines too. |
||
|
|
||
| # This allows the test suite to run more reliably on Linux | ||
| if [ "$OS" = "linux" ]; then | ||
| pip uninstall pyqt5 pyqt5-qt5 pyqt5-sip pyqtwebengine pyqtwebengine-qt5 -q -y | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Remove these lines when PyLSP 1.9 is released.