Skip to content

Commit

Permalink
Bump pylint to 3.3.3, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Dec 24, 2024
1 parent 1f9b947 commit c28580b
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 14 deletions.
29 changes: 29 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,35 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.3.3?
---------------------------
Release date: 2024-12-23


False Positives Fixed
---------------------

- Fix false positives for ``undefined-variable`` for classes using Python 3.12
generic type syntax.

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

- Fix a false positive for `use-implicit-booleaness-not-len`. No lint should be emitted for
generators (`len` is not defined for generators).

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



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

- Fix ``Unable to import 'collections.abc' (import-error)`` on Python 3.13.1.

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



What's new in Pylint 3.3.2?
---------------------------
Release date: 2024-12-01
Expand Down
4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/10100.false_positive

This file was deleted.

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

This file was deleted.

4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/9335.false_positive

This file was deleted.

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.2"
__version__ = "3.3.3"


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.2"
current = "3.3.3"
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.2"
version = "3.3.3"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.3/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down

0 comments on commit c28580b

Please sign in to comment.