From 8de53e8b7f4d1f88da4146ceeb5aa923a7300c56 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Thu, 10 Mar 2022 22:15:35 +0100 Subject: [PATCH] Fix import from collections collections.Mapping has moved to collections.abc.Mapping a long time ago, and was removed in Python 3.10. Change-Id: I303ac8fe685913cf2259386cababa4ded03f4866 --- trove/tests/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trove/tests/config.py b/trove/tests/config.py index 49d97c3e29..1d21207de7 100644 --- a/trove/tests/config.py +++ b/trove/tests/config.py @@ -21,7 +21,7 @@ environments if we choose to. """ -from collections import Mapping +from collections.abc import Mapping from datetime import datetime import json import os