Skip to content

Commit

Permalink
Limit pylint to <3 while waiting for a new release of requirements-de…
Browse files Browse the repository at this point in the history
…tector (#642)
  • Loading branch information
Pierre-Sassoulas authored Oct 4, 2024
1 parent 7b17a72 commit 8b82c53
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Version 1.11.0
**New**:

* We dropped support for python 3.7.
* prospector now support python 3.12 and 3.13.
* pylint is now set to version 3.0.0 or less, while waiting
for a new release of ``requirements-detector`` compatible
with pylint 3.0+.


Version 1.10.3
Expand Down Expand Up @@ -388,7 +392,7 @@ Version 0.12.9

Version 0.12.8
---------------
* Enforece pylint, pyflakes and pycodestyle versions to avoid breaking other dependent tools
* Enforce pylint, pyflakes and pycodestyle versions to avoid breaking other dependent tools
* `#242 <https://github.com/PyCQA/prospector/pull/248>`_ Fix absolute path issue with pylint
* `#234 <https://github.com/PyCQA/prospector/pull/234>`_ Added Python 3.5/3.6 support on build

Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
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]>",
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 8b82c53

Please sign in to comment.