From cf02da7e0bf544a499c11e941144de9b7098c6e0 Mon Sep 17 00:00:00 2001 From: "dudepls[bot]" <323171535+dudepls[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 19:54:30 +0000 Subject: [PATCH] chore(deps): raise minimum versions of boto3, cryptography, requests Bump lower bounds to pick up current stable releases: - boto3 >=1.40.0 (S3 express + latest session handling) - cryptography >=44.0.0, cap <46.0.0 (current stable line) - requests >=2.32.4 (CVE-2024-47081 netrc leak fix included in lower bound) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8415329..9c8d7f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,11 +49,11 @@ classifiers = [ ] dependencies = [ - "boto3>=1.35.0,<2.0.0", + "boto3>=1.40.0,<2.0.0", "click>=8.1.0,<9.0.0", - "cryptography>=42.0.0,<45.0.0", + "cryptography>=44.0.0,<46.0.0", "python-dateutil>=2.9.0,<3.0.0", - "requests>=2.32.0,<3.0.0", + "requests>=2.32.4,<3.0.0", ] [project.urls]