From f5f4c01d1bd2079b686a27d0550fb15daf2c02d2 Mon Sep 17 00:00:00 2001 From: Xuan Yang Date: Wed, 17 Dec 2025 21:25:40 -0800 Subject: [PATCH] fix: Pin aiosqlite version to 0.21.0 Co-authored-by: Xuan Yang PiperOrigin-RevId: 846056994 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7a6031c5..04576875 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,8 @@ classifiers = [ # List of https://pypi.org/classifiers/ dependencies = [ # go/keep-sorted start "PyYAML>=6.0.2, <7.0.0", # For APIHubToolset. - "aiosqlite>=0.21.0", # For SQLite database + # TODO: Update aiosqlite version once https://github.com/omnilib/aiosqlite/issues/369 is fixed. + "aiosqlite==0.21.0", # For SQLite database "anyio>=4.9.0, <5.0.0", # For MCP Session Manager "authlib>=1.5.1, <2.0.0", # For RestAPI Tool "click>=8.1.8, <9.0.0", # For CLI tools