From 8d818883f054dc71638158b95cba928042837ae7 Mon Sep 17 00:00:00 2001 From: jpy-git Date: Tue, 29 Mar 2022 12:15:43 +0100 Subject: [PATCH] Include ``testing_pylintrc`` in source and wheel distributions --- ChangeLog | 2 ++ doc/whatsnew/2.13.rst | 4 ++++ setup.cfg | 3 +++ 3 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8e890f52fd..9214b58b17 100644 --- a/ChangeLog +++ b/ChangeLog @@ -37,7 +37,9 @@ What's New in Pylint 2.13.4? ============================ Release date: TBA +* Include ``testing_pylintrc`` in source and wheel distributions. + Closes #6028 What's New in Pylint 2.13.3? diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst index 51daf229d5..4bbf48ee7f 100644 --- a/doc/whatsnew/2.13.rst +++ b/doc/whatsnew/2.13.rst @@ -128,6 +128,10 @@ Extensions Other Changes ============= +* Include ``testing_pylintrc`` in source and wheel distributions. + + Closes #6028 + * Fix false positive for ``unnecessary-ellipsis`` when using an ellipsis as a default argument. Closes #5973 diff --git a/setup.cfg b/setup.cfg index 461a3cffec..ec3b4afd2c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -70,6 +70,9 @@ console_scripts = pyreverse = pylint:run_pyreverse symilar = pylint:run_symilar +[options.package_data] +pylint = testutils/testing_pylintrc + [aliases] test = pytest