From 25a41e08675666f50eafe40bb8a14edc9dbada2c Mon Sep 17 00:00:00 2001 From: Dirk Pranke Date: Mon, 11 Nov 2024 09:12:30 -0800 Subject: [PATCH] Update dev env dependencies, pylint settings. --- pylintrc | 1 + pyproject.toml | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pylintrc b/pylintrc index 27e9e42..34c3d50 100644 --- a/pylintrc +++ b/pylintrc @@ -35,6 +35,7 @@ disable= too-many-branches, too-many-instance-attributes, too-many-locals, + too-many-positional-arguments, too-many-public-methods, too-many-return-statements, unidiomatic-typecheck, diff --git a/pyproject.toml b/pyproject.toml index 66fa21c..3755941 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,14 +27,14 @@ dynamic = [ "version" ] [project.optional-dependencies] dev = [ - 'build==1.2.1', - 'coverage==7.5.3', - 'mypy==1.10.0', - 'pip==24.1', - 'pylint==3.2.3', - 'ruff==0.5.1', + 'build==1.2.2.post1', + 'coverage==7.6.4', + 'mypy==1.13.0', + 'pip==24.3.1', + 'pylint==3.3.1', + 'ruff==0.7.3', 'twine==5.1.1', - 'uv==0.2.13', + 'uv==0.5.1', ] [project.urls]