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/whatsnew/v1.0.0.rst
+14-7
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ including other versions of pandas.
21
21
Enhancements
22
22
~~~~~~~~~~~~
23
23
24
+
- :meth:`DataFrame.to_string` added the ``max_colwidth`` parameter to control when wide columns are truncated (:issue:`9784`)
25
+
-
24
26
25
27
.. _whatsnew_1000.enhancements.other:
26
28
@@ -35,6 +37,15 @@ Other enhancements
35
37
(:issue:`28368`)
36
38
-
37
39
40
+
41
+
Build Changes
42
+
^^^^^^^^^^^^^
43
+
44
+
Pandas has added a `pyproject.toml <https://www.python.org/dev/peps/pep-0517/>`_ file and will no longer include
45
+
cythonized files in the source distribution uploaded to PyPI (:issue:`28341`, :issue:`20775`). If you're installing
46
+
a built distribution (wheel) or via conda, this shouldn't have any effect on you. If you're building pandas from
47
+
source, you should no longer need to install Cython into your build environment before calling ``pip install pandas``.
48
+
38
49
.. _whatsnew_1000.api_breaking:
39
50
40
51
Backwards incompatible API changes
@@ -105,6 +116,7 @@ Performance improvements
105
116
Bug fixes
106
117
~~~~~~~~~
107
118
119
+
- Bug in :meth:`DataFrame.to_html` when using ``formatters=<list>`` and ``max_cols`` together. (:issue:`25955`)
108
120
109
121
Categorical
110
122
^^^^^^^^^^^
@@ -169,6 +181,7 @@ Indexing
169
181
^^^^^^^^
170
182
171
183
- Bug in assignment using a reverse slicer (:issue:`26939`)
184
+
- Bug in :meth:`DataFrame.explode` would duplicate frame in the presence of duplicates in the index (:issue:`28010`)
172
185
- Bug in reindexing a :meth:`PeriodIndex` with another type of index that contained a `Period` (:issue:`28323`) (:issue:`28337`)
173
186
- Fix assignment of column via `.loc` with numpy non-ns datetime type (:issue:`27395`)
174
187
@@ -191,6 +204,7 @@ I/O
191
204
- Bug in :meth:`DataFrame.to_json` where using a Tuple as a column or index value and using ``orient="columns"`` or ``orient="index"`` would produce invalid JSON (:issue:`20500`)
192
205
- Improve infinity parsing. :meth:`read_csv` now interprets ``Infinity``, ``+Infinity``, ``-Infinity`` as floating point values (:issue:`10065`)
193
206
- Bug in :meth:`DataFrame.to_csv` where values were truncated when the length of ``na_rep`` was shorter than the text input data. (:issue:`25099`)
207
+
- Bug in :func:`DataFrame.to_string` where values were truncated using display options instead of outputting the full content (:issue:`9784`)
194
208
195
209
Plotting
196
210
^^^^^^^^
@@ -223,13 +237,6 @@ Sparse
223
237
-
224
238
-
225
239
226
-
227
-
Build Changes
228
-
^^^^^^^^^^^^^
229
-
- Fixed pyqt development dependency issue because of different pyqt package name in conda and PyPI (:issue:`26838`)
230
-
- Added a `pyproject.toml <https://www.python.org/dev/peps/pep-0517/>`_ file (:issue:`20775`)
0 commit comments