You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/install.rst
+5-8
Original file line number
Diff line number
Diff line change
@@ -250,9 +250,9 @@ Optional Dependencies
250
250
* `Feather Format <https://github.com/wesm/feather>`__: necessary for feather-based storage, version 0.3.1 or higher.
251
251
* `SQLAlchemy <http://www.sqlalchemy.org>`__: for SQL database support. Version 0.8.1 or higher recommended. Besides SQLAlchemy, you also need a database specific driver. You can find an overview of supported drivers for each SQL dialect in the `SQLAlchemy docs <http://docs.sqlalchemy.org/en/latest/dialects/index.html>`__. Some common drivers are:
252
252
253
-
- `psycopg2 <http://initd.org/psycopg/>`__: for PostgreSQL
254
-
- `pymysql <https://github.com/PyMySQL/PyMySQL>`__: for MySQL.
255
-
- `SQLite <https://docs.python.org/3.5/library/sqlite3.html>`__: for SQLite, this is included in Python's standard library by default.
253
+
* `psycopg2 <http://initd.org/psycopg/>`__: for PostgreSQL
254
+
* `pymysql <https://github.com/PyMySQL/PyMySQL>`__: for MySQL.
255
+
* `SQLite <https://docs.python.org/3.5/library/sqlite3.html>`__: for SQLite, this is included in Python's standard library by default.
256
256
257
257
* `matplotlib <http://matplotlib.org/>`__: for plotting
258
258
* For Excel I/O:
@@ -272,11 +272,8 @@ Optional Dependencies
272
272
<http://www.vergenet.net/~conrad/software/xsel/>`__, or `xclip
273
273
<https://github.com/astrand/xclip/>`__: necessary to use
274
274
:func:`~pandas.read_clipboard`. Most package managers on Linux distributions will have ``xclip`` and/or ``xsel`` immediately available for installation.
and `google-api-python-client <http://github.com/google/google-api-python-client>`__
279
-
: Needed for :mod:`~pandas.io.gbq`
275
+
* For Google BigQuery I/O - see :ref:`here <io.bigquery_deps>`.
276
+
280
277
* `Backports.lzma <https://pypi.python.org/pypi/backports.lzma/>`__: Only for Python 2, for writing to and/or reading from an xz compressed DataFrame in CSV; Python 3 support is built into the standard library.
281
278
* One of the following combinations of libraries is needed to use the
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.0.txt
+2
Original file line number
Diff line number
Diff line change
@@ -438,6 +438,8 @@ Bug Fixes
438
438
439
439
- Bug in ``DataFrame.loc`` with indexing a ``MultiIndex`` with a ``Series`` indexer (:issue:`14730`)
440
440
441
+
- The :func:`pd.read_gbq` method now stores ``INTEGER`` columns as ``dtype=object`` if they contain ``NULL`` values. Otherwise they are stored as ``int64``. This prevents precision lost for integers greather than 2**53. Furthermore ``FLOAT`` columns with values above 10**4 are no more casted to ``int64`` which also caused precision lost (:issue: `14064`).
442
+
441
443
- Bug in ``pd.read_msgpack()`` in which ``Series`` categoricals were being improperly processed (:issue:`14901`)
442
444
- Bug in ``Series.ffill()`` with mixed dtypes containing tz-aware datetimes. (:issue:`14956`)
0 commit comments