From cde2def5d6f2d030cc64da440bbb0941ef94341d Mon Sep 17 00:00:00 2001 From: Luiz Georg Date: Sun, 19 Jul 2026 23:40:21 -0300 Subject: [PATCH] pyproject: pin deps to versions buildable on python 3.10 through 3.14 Signed-off-by: Luiz Georg --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6306981..fb1ae56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,14 +20,14 @@ classifiers = [ "Topic :: Software Development :: Libraries", ] dependencies = [ - "jsonschema[format]", + "jsonschema[format]>=4.26.0", ] [project.optional-dependencies] dev = [ "flake8", - "pylint", - "pytest", + "pylint>=0.22", + "pytest>=2.1", ] [project.urls]