Skip to content

Commit d046a3b

Browse files
simonjayhawkinsJulianWgs
authored andcommitted
DOC/CLN versionadded etc for 1.3 -> 1.3.0 (pandas-dev#41852)
1 parent cf5f964 commit d046a3b

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

doc/source/user_guide/io.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -351,14 +351,14 @@ error_bad_lines : boolean, default ``None``
351351
``DataFrame`` that is returned. See :ref:`bad lines <io.bad_lines>`
352352
below.
353353

354-
.. deprecated:: 1.3
354+
.. deprecated:: 1.3.0
355355
The ``on_bad_lines`` parameter should be used instead to specify behavior upon
356356
encountering a bad line instead.
357357
warn_bad_lines : boolean, default ``None``
358358
If error_bad_lines is ``False``, and warn_bad_lines is ``True``, a warning for
359359
each "bad line" will be output.
360360

361-
.. deprecated:: 1.3
361+
.. deprecated:: 1.3.0
362362
The ``on_bad_lines`` parameter should be used instead to specify behavior upon
363363
encountering a bad line instead.
364364
on_bad_lines : {{'error', 'warn', 'skip'}}, default 'error'
@@ -369,7 +369,7 @@ on_bad_lines : {{'error', 'warn', 'skip'}}, default 'error'
369369
- 'warn', print a warning when a bad line is encountered and skip that line.
370370
- 'skip', skip bad lines without raising or warning when they are encountered.
371371

372-
.. versionadded:: 1.3
372+
.. versionadded:: 1.3.0
373373

374374
.. _io.dtypes:
375375

doc/source/user_guide/window.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ which will first group the data by the specified keys and then perform a windowi
7676
to compute the rolling sums to preserve accuracy as much as possible.
7777

7878

79-
.. versionadded:: 1.3
79+
.. versionadded:: 1.3.0
8080

8181
Some windowing operations also support the ``method='table'`` option in the constructor which
8282
performs the windowing operation over an entire :class:`DataFrame` instead of a single column or row at a time.
@@ -159,7 +159,7 @@ By default the labels are set to the right edge of the window, but a
159159
160160
This can also be applied to datetime-like indices.
161161

162-
.. versionadded:: 1.3
162+
.. versionadded:: 1.3.0
163163

164164
.. ipython:: python
165165
@@ -332,7 +332,7 @@ Numba will be applied in potentially two routines:
332332
#. If ``func`` is a standard Python function, the engine will `JIT <https://numba.pydata.org/numba-doc/latest/user/overview.html>`__ the passed function. ``func`` can also be a JITed function in which case the engine will not JIT the function again.
333333
#. The engine will JIT the for loop where the apply function is applied to each window.
334334

335-
.. versionadded:: 1.3
335+
.. versionadded:: 1.3.0
336336

337337
``mean``, ``median``, ``max``, ``min``, and ``sum`` also support the ``engine`` and ``engine_kwargs`` arguments.
338338

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8744,7 +8744,7 @@ def applymap(
87448744
Additional keyword arguments to pass as keywords arguments to
87458745
`func`.
87468746
8747-
.. versionadded:: 1.3
8747+
.. versionadded:: 1.3.0
87488748
87498749
Returns
87508750
-------

pandas/io/formats/style.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class Styler(StylerRenderer):
126126
``{``, ``}``, ``~``, ``^``, and ``\`` in the cell display string with
127127
LaTeX-safe sequences.
128128
129-
... versionadded:: 1.3.0
129+
.. versionadded:: 1.3.0
130130
131131
Attributes
132132
----------

pandas/io/json/_json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def read_json(
461461
How encoding errors are treated. `List of possible values
462462
<https://docs.python.org/3/library/codecs.html#error-handlers>`_ .
463463
464-
.. versionadded:: 1.3
464+
.. versionadded:: 1.3.0
465465
466466
lines : bool, default False
467467
Read the file as a json object per line.

pandas/io/parsers/readers.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
``open()``. Otherwise, ``errors="strict"`` is passed to ``open()``.
309309
This behavior was previously only the case for ``engine="python"``.
310310
311-
.. versionchanged:: 1.3
311+
.. versionchanged:: 1.3.0
312312
313313
``encoding_errors`` is a new argument. ``encoding`` has no longer an
314314
influence on how encoding errors are handled.
@@ -317,7 +317,7 @@
317317
How encoding errors are treated. `List of possible values
318318
<https://docs.python.org/3/library/codecs.html#error-handlers>`_ .
319319
320-
.. versionadded:: 1.3
320+
.. versionadded:: 1.3.0
321321
322322
dialect : str or csv.Dialect, optional
323323
If provided, this parameter will override values (default or not) for the
@@ -331,14 +331,14 @@
331331
If False, then these "bad lines" will be dropped from the DataFrame that is
332332
returned.
333333
334-
.. deprecated:: 1.3
334+
.. deprecated:: 1.3.0
335335
The ``on_bad_lines`` parameter should be used instead to specify behavior upon
336336
encountering a bad line instead.
337337
warn_bad_lines : bool, default ``None``
338338
If error_bad_lines is False, and warn_bad_lines is True, a warning for each
339339
"bad line" will be output.
340340
341-
.. deprecated:: 1.3
341+
.. deprecated:: 1.3.0
342342
The ``on_bad_lines`` parameter should be used instead to specify behavior upon
343343
encountering a bad line instead.
344344
on_bad_lines : {{'error', 'warn', 'skip'}}, default 'error'
@@ -349,7 +349,7 @@
349349
- 'warn', raise a warning when a bad line is encountered and skip that line.
350350
- 'skip', skip bad lines without raising or warning when they are encountered.
351351
352-
.. versionadded:: 1.3
352+
.. versionadded:: 1.3.0
353353
354354
delim_whitespace : bool, default False
355355
Specifies whether or not whitespace (e.g. ``' '`` or ``'\t'``) will be

0 commit comments

Comments
 (0)