From 9a32dae541032b20cdec1b1811ac9ff1089e8c18 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Fri, 6 Jan 2023 19:10:15 -0500 Subject: [PATCH] Freeze ruff version at or below 0.0.212 Ruff is adding new lint checks quite quickly, which means newer versions of ruff can cause linting to fail. This is a temporary solution until we have a more robust process for handling linting rules. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ba45a64b..a212908d 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def is_rtd() -> bool: "pytest", "pytest-mock", "requests-mock", - "ruff", + "ruff>=0.0.188,<=0.0.212", "tox", "types-PyYAML", "types-requests",