Skip to content

Commit

Permalink
Bump pylint to 3.3.2, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Nov 20, 2024
1 parent 5597aae commit 431b764
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 8 deletions.
14 changes: 14 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,20 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.3.2?
---------------------------
Release date: 2024-11-20


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

- Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).

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



What's new in Pylint 3.3.1?
---------------------------
Release date: 2024-09-24
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/10026.bugfix

This file was deleted.

5 changes: 4 additions & 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.10
py-version=3.12

# Discover python modules and packages in the file system subtree.
recursive=no
Expand Down Expand Up @@ -456,6 +456,9 @@ timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.

[MISCELLANEOUS]

# Whether or not to search for fixme's in docstrings.
check-fixme-in-docstring=no

# List of note tags to take in consideration, separated by a comma.
notes=FIXME,
XXX,
Expand Down
5 changes: 4 additions & 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.10"
py-version = "3.12"

# Discover python modules and packages in the file system subtree.
# recursive =
Expand Down Expand Up @@ -387,6 +387,9 @@ disable = ["raw-checker-failed", "bad-inline-option", "locally-disabled", "file-
timeout-methods = ["requests.api.delete", "requests.api.get", "requests.api.head", "requests.api.options", "requests.api.patch", "requests.api.post", "requests.api.put", "requests.api.request"]

[tool.pylint.miscellaneous]
# Whether or not to search for fixme's in docstrings.
# check-fixme-in-docstring =

# List of note tags to take in consideration, separated by a comma.
notes = ["FIXME", "XXX", "TODO"]

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.1"
__version__ = "3.3.2"


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

0 comments on commit 431b764

Please sign in to comment.