Commit afafb84
committed
fix(deps): upgrade pylint correctly - 4.0.5 for Python>=3.10, 3.3.9 for Python 3.9
pylint 4.x requires Python >=3.10.0 (confirmed via PyPI requires_python field).
The renovate PR kinde-oss#178 incorrectly pinned pylint>=4.0.5 for python_version<'3.10',
which would break dev dependency installation on Python 3.9.
Changes:
- Python >=3.10: pylint >=4.0.5, <4.1.0 (latest stable 4.x series)
- Python <3.10 (3.9): pylint >=3.3.9, <4.0.0 (latest 3.x that supports Python 3.9)
- Keep both [project.optional-dependencies] and [tool.poetry.dev-dependencies] in sync
No migration needed for pylint config: project has no .pylintrc or [tool.pylint]
section, and the removed suggestion-mode option was never used here.
isort >=5.0.0 requirement from pylint 4.0 is already satisfied (project uses ^8.0.0).
Fixes: renovate/pylint-4.x (PR kinde-oss#178)1 parent 15d8f16 commit afafb84
1 file changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
59 | | - | |
| 58 | + | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
98 | | - | |
99 | | - | |
| 98 | + | |
| 99 | + | |
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
| |||
0 commit comments