From a1a8edcb71e8430c8afaf7f8cf81a6dfdf358ceb Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Wed, 24 Jun 2026 08:41:51 +0200 Subject: [PATCH 1/2] marvin: revert mysql-connector-python to 8.0.30 --- tools/marvin/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index 919b544d1339..c7f58131f161 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -46,7 +46,7 @@ "marvin.sandbox.basic"], license="LICENSE.txt", install_requires=[ - "mysql-connector-python <= 8.4.0", + "mysql-connector-python <= 8.0.30", "requests >= 2.2.1", "paramiko >= 1.13.0", "nose >= 1.3.3", From e7c66ccfddcb507d8f20ddccfe5bff93f785b71c Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Thu, 25 Jun 2026 18:07:42 +0200 Subject: [PATCH 2/2] Apply "mysql-connector-python >= 8.4.0", --- tools/marvin/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index c7f58131f161..3023158716f8 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -46,7 +46,7 @@ "marvin.sandbox.basic"], license="LICENSE.txt", install_requires=[ - "mysql-connector-python <= 8.0.30", + "mysql-connector-python >= 8.4.0", "requests >= 2.2.1", "paramiko >= 1.13.0", "nose >= 1.3.3",