Skip to content

Commit 487d546

Browse files
committed
DOC: Remove ..versionchanged less than version 2.0
1 parent 97f2238 commit 487d546

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

doc/source/user_guide/io.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,6 @@ compression : {``'infer'``, ``'gzip'``, ``'bz2'``, ``'zip'``, ``'xz'``, ``'zstd'
303303
As an example, the following could be passed for faster compression and to
304304
create a reproducible gzip archive:
305305
``compression={'method': 'gzip', 'compresslevel': 1, 'mtime': 1}``.
306-
307-
.. versionchanged:: 1.2.0 Previous versions forwarded dict entries for 'gzip' to ``gzip.open``.
308306
thousands : str, default ``None``
309307
Thousands separator.
310308
decimal : str, default ``'.'``
@@ -1472,7 +1470,7 @@ rather than reading the entire file into memory, such as the following:
14721470
table
14731471
14741472
1475-
By specifying a ``chunksize`` to ``read_csv``, the return
1473+
By specifying a ``chunksize`` to :func:`read_csv` as a context manager, the return
14761474
value will be an iterable object of type ``TextFileReader``:
14771475

14781476
.. ipython:: python
@@ -1482,10 +1480,6 @@ value will be an iterable object of type ``TextFileReader``:
14821480
for chunk in reader:
14831481
print(chunk)
14841482
1485-
.. versionchanged:: 1.2
1486-
1487-
``read_csv/json/sas`` return a context-manager when iterating through a file.
1488-
14891483
Specifying ``iterator=True`` will also return the ``TextFileReader`` object:
14901484

14911485
.. ipython:: python

doc/source/user_guide/visualization.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,6 @@ The ``by`` keyword can be specified to plot grouped histograms:
326326
327327
In addition, the ``by`` keyword can also be specified in :meth:`DataFrame.plot.hist`.
328328

329-
.. versionchanged:: 1.4.0
330-
331329
.. ipython:: python
332330
333331
data = pd.DataFrame(
@@ -480,8 +478,6 @@ columns:
480478
481479
You could also create groupings with :meth:`DataFrame.plot.box`, for instance:
482480

483-
.. versionchanged:: 1.4.0
484-
485481
.. ipython:: python
486482
:suppress:
487483

0 commit comments

Comments
 (0)