File tree Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 33
33
extensions = [
34
34
'sphinx.ext.autodoc' ,
35
35
'sphinx.ext.intersphinx' ,
36
+ 'sphinx.ext.extlinks' ,
36
37
'IPython.sphinxext.ipython_directive' ,
37
38
'IPython.sphinxext.ipython_console_highlighting'
38
39
]
267
268
268
269
# Example configuration for intersphinx: refer to the Python standard library.
269
270
intersphinx_mapping = {'http://docs.python.org/' : None }
271
+
272
+
273
+ extlinks = {'issue' : ('https://github.com/pydata/pandas-datareader/issues/%s' ,
274
+ 'GH' ),
275
+ 'wiki' : ('https://github.com/pydata/pandas-datareader/wiki/%s' ,
276
+ 'wiki ' )}
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Contents:
14
14
.. toctree ::
15
15
:maxdepth: 2
16
16
17
+ whatsnew
17
18
remote_data.rst
18
19
19
20
Original file line number Diff line number Diff line change
1
+ .. _whatsnew :
2
+
3
+ .. currentmodule :: pandas-datareader
4
+
5
+ .. ipython :: python
6
+ :suppress:
7
+
8
+ import numpy as np
9
+ from pandas import *
10
+ import pandas as pd
11
+ randn = np.random.randn
12
+ np.set_printoptions(precision = 4 , suppress = True )
13
+ options.display.max_rows = 15
14
+
15
+ **********
16
+ What's New
17
+ **********
18
+
19
+ These are new features and improvements of note in each release.
20
+
21
+ .. include :: whatsnew/v0.2.0.txt
22
+
Original file line number Diff line number Diff line change
1
+ .. _whatsnew_020:
2
+
3
+ v0.2.0 (September [x], 2015)
4
+ ----------------------------
5
+
6
+ This is a major release from 0.1.1 and includes new features and a number of bug fixes.
7
+
8
+
9
+ Highlights include:
10
+
11
+
12
+ .. contents:: What's new in v0.2.0
13
+ :local:
14
+ :backlinks: none
15
+
16
+ .. _whatsnew_020.enhancements:
17
+
18
+ New features
19
+ ~~~~~~~~~~~~
20
+ - Added latitude and longitude to output of wb.get_countries (:issue:`47`).
21
+ - Extended DataReader to fetch dividends and stock splits from Yahoo (:issue:`45`).
22
+ - Added get_available_datasets to famafrench (:issue:`56`).
23
+
24
+ .. _whatsnew_0170.api:
25
+
26
+ Backwards incompatible API changes
27
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28
+
29
+ .. _whatsnew_020.api_breaking:
30
+ - Fama French indexes are not Pandas.PeriodIndex for annual and montly data, and
31
+ pandas.DatetimeIndex otherwise (:issue:`56`).
32
+
33
+ .. _whatsnew_020.bug_fixes:
34
+
35
+ Bug Fixes
36
+ ~~~~~~~~~
37
+
38
+ - Update Fama-French URL (:issue:`53`)
39
+ - Fixed bug where get_quote_yahoo would fail if a company name had a comma (:issue:`85`)
You can’t perform that action at this time.
0 commit comments