From 92b7e34bfea9eadb73b75e31d3543fd92037945a Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Tue, 7 May 2024 18:36:59 -0400 Subject: [PATCH] Pin linters to narrow range to avoid noise Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- conda/dev-environment-unix.yml | 6 +++--- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/dev-environment-unix.yml b/conda/dev-environment-unix.yml index b520d640..490ae203 100644 --- a/conda/dev-environment-unix.yml +++ b/conda/dev-environment-unix.yml @@ -8,7 +8,7 @@ dependencies: - build - bump2version>=1 - cmake - - codespell + - codespell>=2.2.6,<2.3 - compilers - cyrus-sasl - exprtk @@ -23,7 +23,7 @@ dependencies: - libboost-headers - lz4-c - mamba - - mdformat + - mdformat>=0.7.17,<0.8 - ninja - numpy - pillow @@ -43,7 +43,7 @@ dependencies: - rapidjson - requests - ruamel.yaml - - ruff + - ruff>=0.3,<0.4 - scikit-build - slack-sdk - sqlalchemy diff --git a/pyproject.toml b/pyproject.toml index dafa366c..e19191af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,9 +60,9 @@ develop = [ "twine", "wheel", # lint - "codespell", + "codespell>=2.2.6,<2.3", "isort>=5,<6", - "mdformat", + "mdformat>=0.7.17,<0.8", "ruff>=0.3,<0.4", # test "pytest",