Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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