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
+1-1
Original file line number
Diff line number
Diff line change
@@ -228,7 +228,7 @@ Optional Dependencies
228
228
~~~~~~~~~~~~~~~~~~~~~
229
229
230
230
* `Cython <http://www.cython.org>`__: Only necessary to build development
231
-
version. Version 0.23 or higher.
231
+
version. Version 0.24 or higher.
232
232
* `SciPy <http://www.scipy.org>`__: miscellaneous statistical functions, Version 0.14.0 or higher
233
233
* `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.
234
234
* `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.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.22.0.txt
+13-4
Original file line number
Diff line number
Diff line change
@@ -83,14 +83,20 @@ Other Enhancements
83
83
Backwards incompatible API changes
84
84
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
85
85
86
-
- :func:`Series.fillna` now raises a ``TypeError`` instead of a ``ValueError`` when passed a list, tuple or DataFrame as a ``value`` (:issue:`18293`)
87
-
- :func:`pandas.DataFrame.merge` no longer casts a ``float`` column to ``object`` when merging on ``int`` and ``float`` columns (:issue:`16572`)
88
-
- The default NA value for :class:`UInt64Index` has changed from 0 to ``NaN``, which impacts methods that mask with NA, such as ``UInt64Index.where()`` (:issue:`18398`)
89
-
-
86
+
.. _whatsnew_0220.api_breaking.deps:
90
87
88
+
Dependencies have increased minimum versions
89
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
91
90
91
+
We have updated our minimum supported versions of dependencies (:issue:`18613`).
92
92
93
+
If installed, we now require:
93
94
95
+
+--------------+-----------------+----------+
96
+
| Package | Minimum Version | Required |
97
+
+==============+=================+==========+
98
+
| Cython | 0.24 | |
99
+
+--------------+-----------------+----------+
94
100
95
101
96
102
.. _whatsnew_0220.api:
@@ -116,6 +122,9 @@ Other API Changes
116
122
- :func:`DataFrame.from_items` provides a more informative error message when passed scalar values (:issue:`17312`)
117
123
- When created with duplicate labels, ``MultiIndex`` now raises a ``ValueError``. (:issue:`17464`)
118
124
- Building from source now explicity requires ``setuptools`` in ``setup.py`` (:issue:`18113`)
125
+
- :func:`Series.fillna` now raises a ``TypeError`` instead of a ``ValueError`` when passed a list, tuple or DataFrame as a ``value`` (:issue:`18293`)
126
+
- :func:`pandas.DataFrame.merge` no longer casts a ``float`` column to ``object`` when merging on ``int`` and ``float`` columns (:issue:`16572`)
127
+
- The default NA value for :class:`UInt64Index` has changed from 0 to ``NaN``, which impacts methods that mask with NA, such as ``UInt64Index.where()`` (:issue:`18398`)
0 commit comments