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
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
@@ -306,7 +306,8 @@ Other Enhancements
306
306
- Added :func:`SeriesGroupBy.is_monotonic_increasing` and :func:`SeriesGroupBy.is_monotonic_decreasing` (:issue:`17015`)
307
307
- For subclassed ``DataFrames``, :func:`DataFrame.apply` will now preserve the ``Series`` subclass (if defined) when passing the data to the applied function (:issue:`19822`)
308
308
- :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`)
309
-
309
+
- :meth:`Timestamp.month_name`, :meth:`DatetimeIndex.month_name`, and :meth:`Series.dt.month_name` are now available (:issue:`12805`)
310
+
- :meth:`Timestamp.day_name` and :meth:`DatetimeIndex.day_name` are now available to return day names with a specified locale (:issue:`12806`)
310
311
311
312
.. _whatsnew_0230.api_breaking:
312
313
@@ -641,6 +642,7 @@ Deprecations
641
642
- The ``broadcast`` parameter of ``.apply()`` is deprecated in favor of ``result_type='broadcast'`` (:issue:`18577`)
642
643
- The ``reduce`` parameter of ``.apply()`` is deprecated in favor of ``result_type='reduce'`` (:issue:`18577`)
643
644
- The ``order`` parameter of :func:`factorize` is deprecated and will be removed in a future release (:issue:`19727`)
645
+
- :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