From d1b10c6abedc17d6fc8b6045680e49e93d79b169 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 25 Sep 2023 12:48:01 -0400 Subject: [PATCH] pin `astroid==2.15.6` for pylint false positives (#16414) 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",