From 5035c799a499f4c94d94c27431f72ca4afcb5830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Mon, 12 Feb 2024 17:12:36 -0300 Subject: [PATCH] dev: update lint dependencies --- pyproject.toml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5a22e3c53..a7f7f7a7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.black] -target-version = ["py36"] +target-version = ["py38", "py39", "py310", "py311", "py312"] line-length = 100 [tool.pylint.messages_control] disable = """ diff --git a/setup.py b/setup.py index 332f8fc18..20fc21f6a 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ setup( ], extras_require={ "lint": [ - "black==22.3.0", - "pylint==2.13.4", + "black==24.1.1", + "pylint==3.0.3", ], "test": [ "pytest",