Skip to content

Commit c2b01c3

Browse files
Bump pylint to 3.3.4, update changelog
1 parent 023cd43 commit c2b01c3

11 files changed

+30
-15
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ repos:
109109
entry: make -C doc/ html
110110
pass_filenames: false
111111
language: system
112-
stages: [push]
112+
stages: [pre-push]
113113
- id: check-newsfragments
114114
name: Check newsfragments
115115
entry: python3 -m script.check_newsfragments

CONTRIBUTORS.txt

+1
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ contributors:
334334
- syutbai <[email protected]>
335335
- sur.la.route <[email protected]>
336336
- sdet_liang <[email protected]>
337+
- purajit <[email protected]>
337338
- paschich <[email protected]>
338339
339340
- nyabkun <[email protected]>

doc/whatsnew/3/3.3/index.rst

+23
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ Summary -- Release highlights
1414

1515
.. towncrier release notes start
1616
17+
18+
What's new in Pylint 3.3.4?
19+
---------------------------
20+
Release date: 2025-01-28
21+
22+
23+
Other Bug Fixes
24+
---------------
25+
26+
- Fixes "skipped files" count calculation; the previous method was displaying an arbitrary number.
27+
28+
Closes #10073 (`#10073 <https://github.com/pylint-dev/pylint/issues/10073>`_)
29+
30+
- Fixes a crash that occurred when pylint was run in a container on a host with cgroupsv2 and restrictions on CPU usage.
31+
32+
Closes #10103 (`#10103 <https://github.com/pylint-dev/pylint/issues/10103>`_)
33+
34+
- Relaxed the requirements for isort so pylint can benefit from isort 6.
35+
36+
Closes #10203 (`#10203 <https://github.com/pylint-dev/pylint/issues/10203>`_)
37+
38+
39+
1740
What's new in Pylint 3.3.3?
1841
---------------------------
1942
Release date: 2024-12-23

doc/whatsnew/fragments/10073.bugfix

-3
This file was deleted.

doc/whatsnew/fragments/10103.bugfix

-3
This file was deleted.

doc/whatsnew/fragments/10203.bugfix

-3
This file was deleted.

examples/pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ prefer-stubs=no
9393

9494
# Minimum Python version to use for version dependent checks. Will default to
9595
# the version used to run pylint.
96-
py-version=3.12
96+
py-version=3.13
9797

9898
# Discover python modules and packages in the file system subtree.
9999
recursive=no

examples/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ persistent = true
8383

8484
# Minimum Python version to use for version dependent checks. Will default to the
8585
# version used to run pylint.
86-
py-version = "3.12"
86+
py-version = "3.13"
8787

8888
# Discover python modules and packages in the file system subtree.
8989
# recursive =

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "3.3.3"
12+
__version__ = "3.3.4"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

tbump.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/pylint-dev/pylint"
22

33
[version]
4-
current = "3.3.3"
4+
current = "3.3.4"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

towncrier.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.towncrier]
2-
version = "3.3.3"
2+
version = "3.3.4"
33
directory = "doc/whatsnew/fragments"
44
filename = "doc/whatsnew/3/3.3/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"

0 commit comments

Comments
 (0)