summaryrefslogtreecommitdiff
path: root/dev-python/leather/files/leather-0.3.3-fix-py3.10.patch
blob: 8ec9e1767a4fcb69b1768208504af7e82466e1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From 5dd1d3cc82d426388c66db8e3761ca2bf99a3991 Mon Sep 17 00:00:00 2001
From: Brian <brian@quantrocket.com>
Date: Fri, 27 Mar 2020 17:08:50 -0400
Subject: [PATCH] import from collections.abc to suppress python 3.7 warning

---
 leather/series/base.py     | 5 ++++-
 leather/series/category.py | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/leather/series/base.py b/leather/series/base.py
index c5790e5..959e827 100644
--- a/leather/series/base.py
+++ b/leather/series/base.py
@@ -1,6 +1,9 @@
 #!/usr/bin/env python
 
-from collections import Iterable, Sequence, Mapping
+try:
+    from collections.abc import Iterable, Sequence, Mapping
+except ImportError:
+    from collections import Iterable, Sequence, Mapping
 from functools import partial
 
 import six
diff --git a/leather/series/category.py b/leather/series/category.py
index c575308..3678377 100644
--- a/leather/series/category.py
+++ b/leather/series/category.py
@@ -1,6 +1,9 @@
 #!/usr/bin/env python
 
-from collections import Iterable, Sequence, Mapping
+try:
+    from collections.abc import Iterable, Sequence, Mapping
+except ImportError:
+    from collections import Iterable, Sequence, Mapping
 from functools import partial
 
 import six