Skip to content

Commit 8b82c53

Browse files
Limit pylint to <3 while waiting for a new release of requirements-detector (#642)
1 parent 7b17a72 commit 8b82c53

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Version 1.11.0
88
**New**:
99

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

1216

1317
Version 1.10.3
@@ -388,7 +392,7 @@ Version 0.12.9
388392

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

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "prospector"
3-
version = "1.10.3"
3+
version = "1.11.0"
44
description = "Prospector is a tool to analyse Python code by aggregating the result of other tools."
55
authors = ["Carl Crowder <[email protected]>"]
66
maintainers = ["Carl Crowder <[email protected]>",
@@ -38,7 +38,7 @@ prospector = 'prospector.run:main'
3838

3939
[tool.poetry.dependencies]
4040
python = ">=3.8.1,<4.0"
41-
pylint = ">=2.8.3"
41+
pylint = ">=2.8.3,<3.0"
4242
pylint-celery = "0.3"
4343
pylint-django = "~2.5"
4444
pylint-plugin-utils = "~0.7"

0 commit comments

Comments
 (0)