Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/exts/pylint_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ def get_plugins_info(
return by_checker


def setup(app: Sphinx) -> dict[str, str]:
def setup(app: Sphinx) -> dict[str, str | bool]:
app.connect("builder-inited", builder_inited)
return {"version": sphinx.__display_version__}
return {"version": sphinx.__display_version__, "parallel_read_safe": True}


if __name__ == "__main__":
Expand Down
22 changes: 22 additions & 0 deletions doc/whatsnew/3/3.0/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,28 @@ easier to parse and provides more info, here's a sample output.

.. towncrier release notes start

What's new in Pylint 3.0.1?
---------------------------
Release date: 2023-10-05


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

- Fixed false positive for ``inherit-non-class`` for generic Protocols.

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



Other Changes
-------------

- Fix a crash when an enum class which is also decorated with a ``dataclasses.dataclass`` decorator is defined.

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


What's new in Pylint 3.0.0?
---------------------------
Release date: 2023-10-02
Expand Down