-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require pylint version to be at least 2.5.1 (#63)
Requiring pylint==2.4.0 might downgrade pylint on most recent Linux distributions, e.g. Ubuntu 22.04 is shipped with pylint-2.12.2. From pylint version 2.5.1 onward the `do_exit` argument of the `Run` class has been changed to `exit` and the former one is marked as deprecated.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
docker >= 4.1.0 | ||
flask >= 1.1.0 | ||
pycodestyle >= 2.5.0 | ||
pylint == 2.4 | ||
pylint >= 2.5.1 | ||
pyroute2 >= 0.5.7 | ||
six >= 1.12 | ||
toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters