From 86889f4c63fd522612b5c4abe5f162a7dccdf89f Mon Sep 17 00:00:00 2001 From: Mathis Ribet Date: Fri, 26 Jul 2024 09:36:55 +0200 Subject: [PATCH] Use an appropriate minimum version for marshmallow on python 3.12+ --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index aa12a95..6e9877c 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,8 @@ envlist= [testenv] extras = tests deps = - marshmallowlowest: marshmallow==3.13.0 + marshmallowlowest: marshmallow==3.13.0;python_version<"3.12" + marshmallowlowest: marshmallow==3.20.2;python_version>="3.12" marshmallow3: marshmallow>=3.13.0,<4.0.0 marshmallowdev: https://github.com/marshmallow-code/marshmallow/archive/dev.tar.gz commands = pytest {posargs}