We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac27663 + 4dc7bd6 commit a4bf2e0Copy full SHA for a4bf2e0
docs/whats-new.rst
@@ -2,6 +2,14 @@
2
3
What's New
4
==========
5
+.. _whats-new.2.4.1:
6
+
7
+v2.4.1
8
+------
9
+Bug fixes
10
+~~~~~~~~~
11
+- Move `from collections import Iterable` to `from collections.abc import Iterable`
12
+ for compatibility with newer python versions
13
14
.. _whats-new.2.4.0:
15
metsim/metsim.py
@@ -35,7 +35,8 @@
35
import sys
36
import warnings
37
import time as tm
38
-from collections import Iterable, OrderedDict
+from collections import OrderedDict
39
+from collections.abc import Iterable
40
from getpass import getuser
41
42
import numpy as np
0 commit comments