From 0c665176bd24872b85f1e1d4d97d2374984c2254 Mon Sep 17 00:00:00 2001 From: Athos Ribeiro Date: Tue, 9 Nov 2021 18:28:29 -0300 Subject: [PATCH] Add support to Python 3.10 Python 3.10 removed the aliases to collections.abc from the collections module. See [1] for reference. * Closes #422 [1] https://docs.python.org/3/whatsnew/3.10.html#removed Signed-off-by: Athos Ribeiro --- scss/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/types.py b/scss/types.py index c35905a3..e354048a 100644 --- a/scss/types.py +++ b/scss/types.py @@ -3,7 +3,7 @@ from __future__ import print_function from __future__ import unicode_literals -from collections import Iterable +from collections.abc import Iterable import colorsys from fractions import Fraction import operator