From 8b82c53e3f386dd5d07afe028a20817865d3717e Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Fri, 4 Oct 2024 08:05:40 +0200 Subject: [PATCH] Limit pylint to <3 while waiting for a new release of requirements-detector (#642) --- CHANGELOG.rst | 6 +++++- poetry.lock | 2 +- pyproject.toml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0f57b8ea..b551a0f9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 @@ -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 `_ Fix absolute path issue with pylint * `#234 `_ Added Python 3.5/3.6 support on build diff --git a/poetry.lock b/poetry.lock index a0793892..d6b5cb9f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2002,4 +2002,4 @@ with-vulture = ["vulture"] [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<4.0" -content-hash = "a536355b405c5e530476d40068b30def3d1e231bcd80865b119d8665a7d48f8c" +content-hash = "e9a0b66267b1a75d3cb127ad12861918698d7adcc88f199a489df5df85e1f0b6" diff --git a/pyproject.toml b/pyproject.toml index 8eff6ae6..e6fcbc54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] maintainers = ["Carl Crowder ", @@ -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"