From f7f1c4060aa910d670fc7157c71aaa3f09037760 Mon Sep 17 00:00:00 2001 From: Noemi <45180344+unflxw@users.noreply.github.com> Date: Thu, 28 Nov 2024 10:48:01 +0100 Subject: [PATCH] Lock linters to latest version Lock `ruff`, `black`, `isort` and `mypy` to the latest version. We should update these from time to time. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1d47d80..0de4649 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,10 +79,10 @@ python = ["38", "39", "310", "311", "312"] [tool.hatch.envs.lint] detached = true dependencies = [ - "black>=23.1.0", - "mypy>=1.0.0", - "isort", - "ruff>=0.0.243", + "black==24.1.0", + "mypy==1.13.0", + "isort==5.13.2", + "ruff==0.8.0", "opentelemetry-api", "opentelemetry-sdk",