Skip to content

Commit 2368761

Browse files
committed
Revert pydata/pandas-datareader references
1 parent 5c9edd8 commit 2368761

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/source/ecosystem.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ both "column wise min/max and global min/max coloring."
143143
API
144144
-----
145145

146-
`pandas-datareader <https://github.com/pandas-dev/pandas-datareader>`__
146+
`pandas-datareader <https://github.com/pydata/pandas-datareader>`__
147147
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148148
``pandas-datareader`` is a remote data access library for pandas. ``pandas.io`` from pandas < 0.17.0 is now refactored/split-off to and importable from ``pandas_datareader`` (PyPI:``pandas-datareader``). Many/most of the supported APIs have at least a documentation paragraph in the `pandas-datareader docs <https://pandas-datareader.readthedocs.io/en/latest/>`_:
149149

doc/source/remote_data.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DataReader
1313

1414
The sub-package ``pandas.io.data`` is removed in favor of a separately
1515
installable `pandas-datareader package
16-
<https://github.com/pandas-dev/pandas-datareader>`_. This will allow the data
16+
<https://github.com/pydata/pandas-datareader>`_. This will allow the data
1717
modules to be independently updated to your pandas installation. The API for
1818
``pandas-datareader v0.1.1`` is the same as in ``pandas v0.16.1``.
1919
(:issue:`8961`)

doc/source/whatsnew/v0.17.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ users upgrade to this version.
1414
.. warning::
1515

1616
The ``pandas.io.data`` package is deprecated and will be replaced by the
17-
`pandas-datareader package <https://github.com/pandas-dev/pandas-datareader>`_.
17+
`pandas-datareader package <https://github.com/pydata/pandas-datareader>`_.
1818
This will allow the data modules to be independently updated to your pandas
1919
installation. The API for ``pandas-datareader v0.1.1`` is exactly the same
2020
as in ``pandas v0.17.0`` (:issue:`8961`, :issue:`10861`).

doc/source/whatsnew/v0.19.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ Removal of prior version deprecations/changes
13751375
- The ``SparsePanel`` class has been removed (:issue:`13778`)
13761376
- The ``pd.sandbox`` module has been removed in favor of the external library ``pandas-qt`` (:issue:`13670`)
13771377
- The ``pandas.io.data`` and ``pandas.io.wb`` modules are removed in favor of
1378-
the `pandas-datareader package <https://github.com/pandas-dev/pandas-datareader>`__ (:issue:`13724`).
1378+
the `pandas-datareader package <https://github.com/pydata/pandas-datareader>`__ (:issue:`13724`).
13791379
- The ``pandas.tools.rplot`` module has been removed in favor of
13801380
the `seaborn package <https://github.com/mwaskom/seaborn>`__ (:issue:`13855`)
13811381
- ``DataFrame.to_csv()`` has dropped the ``engine`` parameter, as was deprecated in 0.17.1 (:issue:`11274`, :issue:`13419`)

pandas/io/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
raise ImportError(
22
"The pandas.io.data module is moved to a separate package "
33
"(pandas-datareader). After installing the pandas-datareader package "
4-
"(https://github.com/pandas-dev/pandas-datareader), you can change "
4+
"(https://github.com/pydata/pandas-datareader), you can change "
55
"the import ``from pandas.io import data, wb`` to "
66
"``from pandas_datareader import data, wb``.")

pandas/io/wb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
raise ImportError(
22
"The pandas.io.wb module is moved to a separate package "
33
"(pandas-datareader). After installing the pandas-datareader package "
4-
"(https://github.com/pandas-dev/pandas-datareader), you can change "
4+
"(https://github.com/pydata/pandas-datareader), you can change "
55
"the import ``from pandas.io import data, wb`` to "
66
"``from pandas_datareader import data, wb``.")

0 commit comments

Comments
 (0)