File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,8 @@ script:
59
59
cd docs
60
60
make html
61
61
cd ..
62
- doctr deploy devel --build-tags
63
62
if [[ -z "$TRAVIS_TAG" ]]; then
64
- echo "Not a tagged build."
63
+ doctr deploy devel -- build-tags
65
64
else
66
65
doctr deploy . --build-tags
67
66
fi
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ Bug Fixes
62
62
- Fix eurostat URL. (:issue:`669`)
63
63
- Adjust Alphavantage time series reader to account for descending ordering. (:issue:`666`)
64
64
- Fix bug in downloading index historical constituents. (:issue:`591`)
65
+ - Fix a bug that occurs when an endpoint returns has no data for a date range. (:issue:`640`)
65
66
66
67
Contributors
67
68
~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ def _dl_mult_symbols(self, symbols):
252
252
try :
253
253
stocks [sym ] = self ._read_one_data (self .url , self ._get_params (sym ))
254
254
passed .append (sym )
255
- except IOError :
255
+ except ( IOError , KeyError ) :
256
256
msg = "Failed to read symbol: {0!r}, replacing with NaN."
257
257
warnings .warn (msg .format (sym ), SymbolWarning )
258
258
failed .append (sym )
You can’t perform that action at this time.
0 commit comments