File tree 1 file changed +8
-2
lines changed 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 2
2
A collection of functions for collecting, analyzing and plotting
3
3
financial data. User contributions welcome!
4
4
5
- This module is deprecated in 1.4 and will be moved to `mpl_toolkits`
5
+ This module is deprecated in 2.0 and will be moved to `mpl_toolkits`
6
6
or it's own project in the future.
7
7
8
8
"""
23
23
24
24
from matplotlib import colors as mcolors , verbose , get_cachedir
25
25
from matplotlib .dates import date2num
26
- from matplotlib .cbook import iterable , mkdirs
26
+ from matplotlib .cbook import iterable , mkdirs , warn_deprecated
27
27
from matplotlib .collections import LineCollection , PolyCollection
28
28
from matplotlib .lines import Line2D , TICKLEFT , TICKRIGHT
29
29
from matplotlib .patches import Rectangle
30
30
from matplotlib .transforms import Affine2D
31
31
32
+ warn_deprecated (
33
+ since = 2.0 ,
34
+ message = ("The finance module has been deprecated in mpl 2.0 and will "
35
+ "be removed in mpl 2.2. Please use the matplotlib toolkit "
36
+ "finance instead." ))
37
+
32
38
33
39
if six .PY3 :
34
40
import hashlib
You can’t perform that action at this time.
0 commit comments