-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit pylint to <3 while waiting for a new release of requirements-de…
…tector (#642)
- Loading branch information
1 parent
7b17a72
commit 8b82c53
Showing
3 changed files
with
8 additions
and
4 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "prospector" | ||
version = "1.10.3" | ||
version = "1.11.0" | ||
description = "Prospector is a tool to analyse Python code by aggregating the result of other tools." | ||
authors = ["Carl Crowder <[email protected]>"] | ||
maintainers = ["Carl Crowder <[email protected]>", | ||
|
@@ -38,7 +38,7 @@ prospector = 'prospector.run:main' | |
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8.1,<4.0" | ||
pylint = ">=2.8.3" | ||
pylint = ">=2.8.3,<3.0" | ||
pylint-celery = "0.3" | ||
pylint-django = "~2.5" | ||
pylint-plugin-utils = "~0.7" | ||
|