From 769976d6189c14832994d287409c23996ac12d8e Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Mon, 5 Apr 2021 10:42:02 +0200 Subject: [PATCH] Update Changelog following migration to setuptools --- ChangeLog | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cce3c139c2..83caefd9d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,7 +12,11 @@ Release date: Undefined * Apply ``const-naming-style`` to module constants annotated with ``typing.Final`` -* The packaging is now done via setuptools exclusively. The 'doc' extra-require has been removed. +* The packaging is now done via setuptools exclusively. ``doc``, ``test``, ``man``, ``elisp`` and ``Changelog`` are + not packaged anymore - reducing the size of the package by 75%. Debian packaging is now (officially) done in + https://salsa.debian.org/python-team/packages/pylint. The 'doc' extra-require has been removed. ``__pkginfo__`` now + only contain ``__version__`` (also accessible with ``pylint.__version__``), other meta-information are still + accessible with ``import importlib;metadata.metadata('pylint')``. What's New in Pylint 2.7.5?