From 64a4a30ce6124972815d19836cb0015582191b2c Mon Sep 17 00:00:00 2001 From: Matt Carroll Date: Tue, 7 Apr 2026 13:51:52 -0700 Subject: [PATCH] chore(deps): add version bounds to sniffio dependency All other dependencies have version constraints. Pin sniffio to >=1.1, <2 for consistency and to guard against breaking changes. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 936914d..03af849 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "typing-extensions>=4.10, <5", "anyio>=3.5.0, <5", "distro>=1.7.0, <2", - "sniffio", + "sniffio>=1.1, <2", ] requires-python = ">= 3.9"