From 0668bf5908815c4026e8ee56ff35a551074ddd7f Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Fri, 18 Sep 2026 12:37:40 +0900 Subject: [PATCH] chore: pin pymysql version temporarily --- packages/runtime-sdk/tests/bindings-test/pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/runtime-sdk/tests/bindings-test/pyproject.toml b/packages/runtime-sdk/tests/bindings-test/pyproject.toml index 0db629d3..4db2d1ba 100644 --- a/packages/runtime-sdk/tests/bindings-test/pyproject.toml +++ b/packages/runtime-sdk/tests/bindings-test/pyproject.toml @@ -7,7 +7,10 @@ dependencies = [ "pytest-asyncio<1.2.0", # These are for hyperdrive tests "pg8000", - "pymysql", + # There is a regression in upstream pymysql. + # Remove when the following PR is merged and released. + # https://github.com/PyMySQL/PyMySQL/pull/1275 + "pymysql<=1.2.0", "aiomysql", "psycopg[binary]; python_version >= '3.14'", "asyncpg; python_version >= '3.14'",