Skip to content

Commit

Permalink
Bump pylint to 3.3.4, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jan 28, 2025
1 parent ad020c0 commit d2aabb0
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ repos:
entry: make -C doc/ html
pass_filenames: false
language: system
stages: [push]
stages: [pre-push]
- id: check-newsfragments
name: Check newsfragments
entry: python3 -m script.check_newsfragments
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ contributors:
- syutbai <[email protected]>
- sur.la.route <[email protected]>
- sdet_liang <[email protected]>
- purajit <[email protected]>
- paschich <[email protected]>
- oittaa <[email protected]>
- nyabkun <[email protected]>
Expand Down
23 changes: 23 additions & 0 deletions doc/whatsnew/3/3.3/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,29 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.3.4?
---------------------------
Release date: 2025-01-28


Other Bug Fixes
---------------

- Fixes "skipped files" count calculation; the previous method was displaying an arbitrary number.

Closes #10073 (`#10073 <https://github.com/pylint-dev/pylint/issues/10073>`_)

- Fixes a crash that occurred when pylint was run in a container on a host with cgroupsv2 and restrictions on CPU usage.

Closes #10103 (`#10103 <https://github.com/pylint-dev/pylint/issues/10103>`_)

- Relaxed the requirements for isort so pylint can benefit from isort 6.

Closes #10203 (`#10203 <https://github.com/pylint-dev/pylint/issues/10203>`_)



What's new in Pylint 3.3.3?
---------------------------
Release date: 2024-12-23
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/10073.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/10103.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/10203.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion examples/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ prefer-stubs=no

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

# Discover python modules and packages in the file system subtree.
recursive=no
Expand Down
2 changes: 1 addition & 1 deletion examples/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ persistent = true

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

# Discover python modules and packages in the file system subtree.
# recursive =
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "3.3.3"
__version__ = "3.3.4"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/pylint-dev/pylint"

[version]
current = "3.3.3"
current = "3.3.4"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "3.3.3"
version = "3.3.4"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.3/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down

0 comments on commit d2aabb0

Please sign in to comment.