From 3a21f48c9ca3dd082c27189fdb0cba4556468290 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 28 Jul 2023 18:37:30 +0300 Subject: [PATCH] Lock "marshmallow" dependency to the 3.19.0 for Python 3.7 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6d450519..ef9543e3 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,8 @@ minimal_requirements = [ "click==8.1.*; " + py_gte_37, "colorama", "marshmallow==3.14.1; " + py_below_37, - "marshmallow==3.20.*; " + py_gte_37, + "marshmallow==3.19.0; " + py_37, + "marshmallow==3.20.*; " + py_gte_38, "pyelftools==0.29", "pyserial==3.5.*", # keep in sync "device/monitor/terminal.py" "requests==2.*",