Skip to content

COMPAT for pandas 0.20.0 #304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ build
dist
docs/build
.tox/
.cache/
*~
3 changes: 1 addition & 2 deletions pandas_datareader/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from distutils.version import LooseVersion

import pandas as pd
from pandas.core.common import PandasError
from pandas import to_datetime

import requests
Expand Down Expand Up @@ -45,7 +44,7 @@ class SymbolWarning(UserWarning):
pass


class RemoteDataError(PandasError, IOError):
class RemoteDataError(IOError):
pass


Expand Down
4 changes: 2 additions & 2 deletions pandas_datareader/edgar.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
from pandas import read_csv
from pandas import DataFrame
from pandas import to_datetime
from pandas.io.common import ZipFile
from zipfile import ZipFile
from pandas.compat import StringIO
from pandas.core.common import is_number
from pandas.api.types import is_number

from pandas_datareader.base import _BaseReader
from pandas_datareader.compat import BytesIO
Expand Down
2 changes: 1 addition & 1 deletion pandas_datareader/famafrench.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import tempfile
import re
import datetime as dt
from pandas.io.common import ZipFile
from zipfile import ZipFile
from pandas.compat import lmap, StringIO
from pandas import read_csv, to_datetime

Expand Down