From 891e1c76e8cba0c612feafaebc047dcdab33ceff Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Mon, 7 Feb 2022 11:44:41 +0200 Subject: [PATCH 1/2] build: Re-add setup.py The Python build tools are fine without a setup.py but Dependabot chokes: https://github.com/dependabot/dependabot-core/issues/4483 Add a setup.py to keep Dependabot happy. Fixes #1828 Signed-off-by: Jussi Kukkonen --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..607b26e4fb --- /dev/null +++ b/setup.py @@ -0,0 +1,4 @@ +# This file exists to keep dependabot happy: +# https://github.com/dependabot/dependabot-core/issues/4483 +from setuptools import setup +setup() From a622276feeafa96dde0f6e1074878fd96d0e1a6c Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 8 Feb 2022 09:34:28 +0200 Subject: [PATCH 2/2] build: Remove pylintrc from MANIFEST pylint config lives in pyproject.toml nowadays. Signed-off-by: Jussi Kukkonen --- MANIFEST.in | 1 - 1 file changed, 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 26d2170cb6..9a0359458c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,6 @@ include LICENSE* # Development and testing include *.txt -global-include pylintrc include tox.ini graft tests