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
+6-6
Original file line number
Diff line number
Diff line change
@@ -225,7 +225,7 @@ Dependencies
225
225
------------
226
226
227
227
* `setuptools <https://setuptools.readthedocs.io/en/latest/>`__: 24.2.0 or higher
228
-
* `NumPy <http://www.numpy.org>`__: 1.9.0 or higher
228
+
* `NumPy <http://www.numpy.org>`__: 1.12.0 or higher
229
229
* `python-dateutil <https://dateutil.readthedocs.io/en/stable/>`__: 2.5.0 or higher
230
230
* `pytz <http://pytz.sourceforge.net/>`__
231
231
@@ -236,11 +236,11 @@ Recommended Dependencies
236
236
237
237
* `numexpr <https://github.com/pydata/numexpr>`__: for accelerating certain numerical operations.
238
238
``numexpr`` uses multiple cores as well as smart chunking and caching to achieve large speedups.
239
-
If installed, must be Version 2.4.6 or higher.
239
+
If installed, must be Version 2.6.1 or higher.
240
240
241
241
* `bottleneck <https://github.com/kwgoodman/bottleneck>`__: for accelerating certain types of ``nan``
242
242
evaluations. ``bottleneck`` uses specialized cython routines to achieve large speedups. If installed,
243
-
must be Version 1.0.0 or higher.
243
+
must be Version 1.2.0 or higher.
244
244
245
245
.. note::
246
246
@@ -255,9 +255,9 @@ Optional Dependencies
255
255
256
256
* `Cython <http://www.cython.org>`__: Only necessary to build development
257
257
version. Version 0.28.2 or higher.
258
-
* `SciPy <http://www.scipy.org>`__: miscellaneous statistical functions, Version 0.14.0 or higher
258
+
* `SciPy <http://www.scipy.org>`__: miscellaneous statistical functions, Version 0.18.1 or higher
259
259
* `xarray <http://xarray.pydata.org>`__: pandas like handling for > 2 dims, needed for converting Panels to xarray objects. Version 0.7.0 or higher is recommended.
260
-
* `PyTables <http://www.pytables.org>`__: necessary for HDF5-based storage. Version 3.0.0 or higher required, Version 3.2.1 or higher highly recommended.
260
+
* `PyTables <http://www.pytables.org>`__: necessary for HDF5-based storage, Version 3.4.2 or higher
261
261
* `Feather Format <https://github.com/wesm/feather>`__: necessary for feather-based storage, version 0.3.1 or higher.
262
262
* `Apache Parquet <https://parquet.apache.org/>`__, either `pyarrow <http://arrow.apache.org/docs/python/>`__ (>= 0.4.1) or `fastparquet <https://fastparquet.readthedocs.io/en/latest>`__ (>= 0.0.6) for parquet-based storage. The `snappy <https://pypi.org/project/python-snappy>`__ and `brotli <https://pypi.org/project/brotlipy>`__ are available for compression support.
263
263
* `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:
@@ -266,7 +266,7 @@ Optional Dependencies
266
266
* `pymysql <https://github.com/PyMySQL/PyMySQL>`__: for MySQL.
267
267
* `SQLite <https://docs.python.org/3/library/sqlite3.html>`__: for SQLite, this is included in Python's standard library by default.
268
268
269
-
* `matplotlib <http://matplotlib.org/>`__: for plotting, Version 1.4.3 or higher.
269
+
* `matplotlib <http://matplotlib.org/>`__: for plotting, Version 2.0.0 or higher.
270
270
* For Excel I/O:
271
271
272
272
* `xlrd/xlwt <http://www.python-excel.org/>`__: Excel reading (xlrd) and writing (xlwt)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.24.0.txt
+24
Original file line number
Diff line number
Diff line change
@@ -206,8 +206,32 @@ Other Enhancements
206
206
207
207
Backwards incompatible API changes
208
208
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
209
+
209
210
- A newly constructed empty :class:`DataFrame` with integer as the ``dtype`` will now only be cast to ``float64`` if ``index`` is specified (:issue:`22858`)
210
211
212
+
.. _whatsnew_0240.api_breaking.deps:
213
+
214
+
Dependencies have increased minimum versions
215
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
216
+
217
+
We have updated our minimum supported versions of dependencies (:issue:`21242`).
0 commit comments