File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ API changes
43
43
Deprecations
44
44
^^^^^^^^^^^^
45
45
46
+ - The ``pandas.io.ga`` module which implements ``google-analytics`` support is deprecated and will be removed in a future version (:issue:`11308`)
47
+
46
48
.. _whatsnew_0171.performance:
47
49
48
50
Performance Improvements
Original file line number Diff line number Diff line change 4
4
3. Goto APIs and register for OAuth2.0 for installed applications
5
5
4. Download JSON secret file and move into same directory as this file
6
6
"""
7
+
8
+ # GH11038
9
+ import warnings
10
+ warnings .warn ("The pandas.io.ga module is deprecated and will be "
11
+ "removed in a future version." ,
12
+ FutureWarning , stacklevel = 2 )
13
+
7
14
from datetime import datetime
8
15
import re
9
16
from pandas import compat
You can’t perform that action at this time.
0 commit comments