From 7ca58f881e73eb2510cb11e09f297c6c8376578c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BA=D0=BE=D1=81=20=D0=90=D1=80=D1=82=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B5=D0=B2=D0=B8?= =?UTF-8?q?=D1=87?= Date: Fri, 17 Jul 2026 10:44:14 +0700 Subject: [PATCH] fix: declare direct dependencies requests and urllib3 redmine_reporter/client.py imports requests and urllib3 directly but they were only available transitively via python-redmine. Retry with allowed_methods requires urllib3 >= 1.26. Closes #66 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fcdfc6a..d2ede78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,8 @@ dependencies = [ "odfpy>=1.4.0", "openpyxl>=3.1.0", "pyyaml>=6.0", + "requests>=2.31", + "urllib3>=1.26", ] [project.optional-dependencies]