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
+4-1
Original file line number
Diff line number
Diff line change
@@ -369,7 +369,9 @@ Other API Changes
369
369
- ``pd.read_csv()`` will now raise a ``ValueError`` for the C engine if the quote character is larger than than one byte (:issue:`11592`)
370
370
- ``inplace`` arguments now require a boolean value, else a ``ValueError`` is thrown (:issue:`14189`)
371
371
- ``pandas.api.types.is_datetime64_ns_dtype`` will now report ``True`` on a tz-aware dtype, similar to ``pandas.api.types.is_datetime64_any_dtype``
372
-
- ``DataFrame.asof()`` will return a null filled ``Series`` instead the scalar ``NaN`` if a match is not found (:issue:`15118`)
372
+
- ``DataFrame.asof()`` will return a null filled ``Series`` instead the scalar ``NaN`` if a match is not found (:issue:`15118`)
373
+
- 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`, :issue:`14305`).
374
+
373
375
.. _whatsnew_0200.deprecations:
374
376
375
377
Deprecations
@@ -439,6 +441,7 @@ Bug Fixes
439
441
440
442
- Bug in ``DataFrame.loc`` with indexing a ``MultiIndex`` with a ``Series`` indexer (:issue:`14730`)
441
443
444
+
442
445
- Bug in ``pd.read_msgpack()`` in which ``Series`` categoricals were being improperly processed (:issue:`14901`)
443
446
- Bug in ``Series.ffill()`` with mixed dtypes containing tz-aware datetimes. (:issue:`14956`)
0 commit comments