From 67136c9c9ededaadd7fd5af39a78436532854f8e Mon Sep 17 00:00:00 2001 From: Steve Yoon Date: Tue, 19 May 2026 15:49:24 -0400 Subject: [PATCH] pin yarl<1.24 to work around incomplete pypi release --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ce3f602..7bb901c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,11 @@ dev = [ "ruff", ] +[tool.uv] +# yarl 1.24.1 was published with only a cp310 wheel and no sdist, so it can't +# install on Python 3.11+. Remove this once upstream uploads the remaining wheels. +constraint-dependencies = ["yarl<1.24"] + [tool.setuptools.packages.find] where = ["src"]