From 2ba9729616f2efb6d85790ad6056bd8871e6318c Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 23 Apr 2025 03:19:45 +0200 Subject: [PATCH] fix: Downgrade to marshmallow<4 TypeError: Field.__init__() got an unexpected keyword argument 'minLength' --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ca6119143abf..5c68e932cb6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,8 @@ dependencies = [ "jsonpath-ng>=1.6.1, <2", "Mako>=1.2.2", "markdown>=3.0", + # marshmallow>=4 has issues: https://github.com/apache/superset/issues/33162 + "marshmallow<4", "msgpack>=1.0.0, <1.1", "nh3>=0.2.11, <0.3", "numpy==1.23.5",