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
+4-6
Original file line number
Diff line number
Diff line change
@@ -83,10 +83,6 @@ 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
-
90
86
.. _whatsnew_0220.api_breaking.deps:
91
87
92
88
Dependencies have increased minimum versions
@@ -104,8 +100,6 @@ If installed, we now require:
104
100
+-----------------+-----------------+----------+
105
101
106
102
107
-
108
-
109
103
.. _whatsnew_0220.api:
110
104
111
105
Other API Changes
@@ -129,6 +123,10 @@ Other API Changes
129
123
- :func:`DataFrame.from_items` provides a more informative error message when passed scalar values (:issue:`17312`)
130
124
- When created with duplicate labels, ``MultiIndex`` now raises a ``ValueError``. (:issue:`17464`)
131
125
- Building from source now explicity requires ``setuptools`` in ``setup.py`` (:issue:`18113`)
126
+
- :func:`Series.fillna` now raises a ``TypeError`` instead of a ``ValueError`` when passed a list, tuple or DataFrame as a ``value`` (:issue:`18293`)
127
+
- :func:`pandas.DataFrame.merge` no longer casts a ``float`` column to ``object`` when merging on ``int`` and ``float`` columns (:issue:`16572`)
128
+
- 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`)
129
+
- Building pandas for development now requires ``cython >= 0.24`` (:issue:`18613`)
0 commit comments