From 3ce5769f885e4e70dc31851aed32af482fb45dca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Linn=C3=A9r?= Date: Wed, 26 Mar 2025 16:24:09 +0100 Subject: [PATCH] Step version of tools --- tox.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index f8fec588..b4da28ca 100644 --- a/tox.ini +++ b/tox.ini @@ -31,28 +31,28 @@ basepython = python3 [testenv:black] deps = - black==22.6.0 + black==25.1.0 commands = black --check --diff . [testenv:flake8] deps = - flake8==4.0.1 + flake8==7.1.2 commands = flake8 [testenv:isort] deps = - isort==5.10.1 + isort==6.0.1 commands = isort --check-only --diff . [testenv:jsonformat] deps = - pytest==6.2.5 + pytest==8.3.5 commands = pytest test_jsonformat.py {posargs} [testenv:pytest] deps = -rrequirements.txt - pytest==6.2.5 + pytest==8.3.5 commands = pytest --ignore=test_jsonformat.py {posargs} [testenv:validate]