From ae0170514f9902d10534449e324944e15ea2cb89 Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Sun, 3 May 2026 10:46:43 +0200 Subject: [PATCH] chore(tests): pin `cbor2` until we decide wrt exception handling --- requirements/tests | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements/tests b/requirements/tests index 71a41a04a..28e84bc0f 100644 --- a/requirements/tests +++ b/requirements/tests @@ -10,7 +10,8 @@ uvicorn >= 0.17.0 websockets >= 13.1 # Handler Specific -cbor2 +# TODO(vytas): Unpin cbor2 once we clean up exception handling, or the upstream revises 6.x behaviour. +cbor2 < 6.0 msgpack mujson ujson @@ -23,5 +24,5 @@ python-rapidjson; platform_python_implementation != 'PyPy' and platform_machine # (not available for CPython 3.15 either yet) orjson; python_version < '3.15' and platform_python_implementation != 'PyPy' and platform_machine != 's390x' and platform_machine != 'aarch64' -# NOTE(vytas): msgspec is not fully compatible with 3.14 at the time of writing yet. +# NOTE(vytas): msgspec is not fully compatible with 3.15 at the time of writing yet. msgspec; python_version < '3.15' and platform_python_implementation != 'PyPy' and platform_machine != 's390x' and platform_machine != 'aarch64'