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
Fix localiztion of months
Add series test and whatsnew notes
Modify test and lint
Add Timestamp rst
Address comments
Lint, move whatsnew, remove hardcoded Monday, check that get_locale is None
create functions instead of attributes
Fix white space
Modify tests
Lint
Rebase and add depreciation message
Deprecate weekday_name, create localizing function in ccalendar.pyx
clean up imports
Address user comments
Try to address ci issues
Rebase and adjust tests
Move some imports to top of file, remove dup implimention of day_name in fields
Fix failing test
allow path to accept weekday_name as well
address review
address review missed files
fix typo and call internal method
Fix lint
modify pytest param for appvoyer
fix more appvoyer tests
Remove weekday_name availability
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.23.0.txt
+3-1
Original file line number
Diff line number
Diff line change
@@ -338,7 +338,8 @@ Other Enhancements
338
338
- For subclassed ``DataFrames``, :func:`DataFrame.apply` will now preserve the ``Series`` subclass (if defined) when passing the data to the applied function (:issue:`19822`)
339
339
- :func:`DataFrame.from_dict` now accepts a ``columns`` argument that can be used to specify the column names when ``orient='index'`` is used (:issue:`18529`)
340
340
- Added option ``display.html.use_mathjax`` so `MathJax <https://www.mathjax.org/>`_ can be disabled when rendering tables in ``Jupyter`` notebooks (:issue:`19856`, :issue:`19824`)
341
-
341
+
- :meth:`Timestamp.month_name`, :meth:`DatetimeIndex.month_name`, and :meth:`Series.dt.month_name` are now available (:issue:`12805`)
342
+
- :meth:`Timestamp.day_name` and :meth:`DatetimeIndex.day_name` are now available to return day names with a specified locale (:issue:`12806`)
342
343
343
344
.. _whatsnew_0230.api_breaking:
344
345
@@ -677,6 +678,7 @@ Deprecations
677
678
- The ``broadcast`` parameter of ``.apply()`` is deprecated in favor of ``result_type='broadcast'`` (:issue:`18577`)
678
679
- The ``reduce`` parameter of ``.apply()`` is deprecated in favor of ``result_type='reduce'`` (:issue:`18577`)
679
680
- The ``order`` parameter of :func:`factorize` is deprecated and will be removed in a future release (:issue:`19727`)
681
+
- :attr:`Timestamp.weekday_name`, :attr:`DatetimeIndex.weekday_name`, and :attr:`Series.dt.weekday_name` are deprecated in favor of :meth:`Timestamp.day_name`, :meth:`DatetimeIndex.day_name`, and :meth:`Series.dt.day_name` (:issue:`12806`)
0 commit comments