From 123e20497915746226e2d09cea3b19312c691cd6 Mon Sep 17 00:00:00 2001 From: Kess Plasmeier Date: Fri, 8 May 2026 14:45:12 -0700 Subject: [PATCH 1/2] chore: bump deps --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 781e89e0..95273d63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,20 +9,20 @@ license = {text = "Apache-2.0"} readme = "README.md" requires-python = ">=3.11" dependencies = [ - "boto3>=1.37.2", - "cryptography>=45.0.6", - "attrs>=25.1.0", + "boto3>=1.43.6", + "cryptography>=48.0.0", + "attrs>=26.1.0", ] [project.optional-dependencies] test = [ - "pytest>=8.4.1", - "pytest-cov>=6.1.1", + "pytest>=9.0.3", + "pytest-cov>=7.1.0", ] dev = [ - "black>=24.3.0,<27.0.0", - "ruff>=0.3.0", - "boto3-stubs~=1.42.49", + "black>=26.3.1", + "ruff>=0.15.12", + "boto3-stubs~=1.43.6", ] [build-system] From 593df72bbab776193a11bb2f91cc77cfa7749d21 Mon Sep 17 00:00:00 2001 From: Kess Plasmeier Date: Mon, 11 May 2026 10:57:51 -0700 Subject: [PATCH 2/2] pin major version of runtime deps --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 95273d63..4e898108 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,9 @@ license = {text = "Apache-2.0"} readme = "README.md" requires-python = ">=3.11" dependencies = [ - "boto3>=1.43.6", - "cryptography>=48.0.0", - "attrs>=26.1.0", + "boto3>=1.43.6,<2", + "cryptography>=48.0.0,<49", + "attrs>=26.1.0,<27", ] [project.optional-dependencies]