dosubot[bot] commented on issue #33162: URL: https://github.com/apache/superset/issues/33162#issuecomment-2813474209
<!-- Greeting --> Hello @MattBodey! I'm [Dosu](https://dosu.dev), a bot here to help you with bugs, answer your questions, and guide you on your journey to becoming a contributor. I'm ready to assist while you wait for a human maintainer. Let’s tackle this together! <!-- Answer --> The issue you're encountering is due to a compatibility problem between Superset and Marshmallow 4.0.0. Specifically, the `fields.Integer` class in Marshmallow 4.0.0 no longer supports the `min` keyword argument, which is causing the error during Superset's initialization. To resolve this issue, you can downgrade Marshmallow to version 3.26.1, where the `min` keyword argument is still supported. You can do this by running the following command: ```bash pip3 install marshmallow==3.26.1 ``` This should allow Superset to initialize without errors. It seems that the version of Marshmallow is specified in `requirements/development.txt`, but there might be an override or update happening elsewhere in the setup process. You may want to check other configuration files or scripts that could be specifying a different version of Marshmallow. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/dd2588fd-4904-4952-ae55-00e9aa3155e7?feedback_type=other)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
