From 22d1516550f0f23aaf64bcb190639f62c61aac57 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 25 Sep 2023 09:43:17 -0400 Subject: [PATCH] pin `astroid==2.15.6` for pylint false positives https://github.com/pylint-dev/pylint/issues/9069 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 0cd93d1cba4b..9f87e513d4e7 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,8 @@ ] dev_dependencies = [ + # pinned for https://github.com/pylint-dev/pylint/issues/9069 + "astroid==2.15.6", "build==0.10.0", "coverage==7.3.0", "diff-cover==7.7.0",