Skip to content

Commit 8276a42

Browse files
jschendeljorisvandenbossche
authored andcommitted
DOC: Remove experimental warning from custom offsets (#17584)
1 parent dfb6c48 commit 8276a42

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

pandas/tseries/offsets.py

+5-18
Original file line numberDiff line numberDiff line change
@@ -951,14 +951,9 @@ def next_bday(self):
951951

952952
class CustomBusinessDay(BusinessDay):
953953
"""
954-
**EXPERIMENTAL** DateOffset subclass representing possibly n business days
954+
DateOffset subclass representing possibly n custom business days,
955955
excluding holidays
956956
957-
.. warning:: EXPERIMENTAL
958-
959-
This class is not officially supported and the API is likely to change
960-
in future versions. Use this at your own risk.
961-
962957
Parameters
963958
----------
964959
n : int, default 1
@@ -1405,12 +1400,8 @@ def onOffset(self, dt):
14051400

14061401
class CustomBusinessMonthEnd(BusinessMixin, MonthOffset):
14071402
"""
1408-
**EXPERIMENTAL** DateOffset of one custom business month
1409-
1410-
.. warning:: EXPERIMENTAL
1411-
1412-
This class is not officially supported and the API is likely to change
1413-
in future versions. Use this at your own risk.
1403+
DateOffset subclass representing one custom business month, incrementing
1404+
between end of month dates
14141405
14151406
Parameters
14161407
----------
@@ -1479,12 +1470,8 @@ def apply(self, other):
14791470

14801471
class CustomBusinessMonthBegin(BusinessMixin, MonthOffset):
14811472
"""
1482-
**EXPERIMENTAL** DateOffset of one custom business month
1483-
1484-
.. warning:: EXPERIMENTAL
1485-
1486-
This class is not officially supported and the API is likely to change
1487-
in future versions. Use this at your own risk.
1473+
DateOffset subclass representing one custom business month, incrementing
1474+
between beginning of month dates
14881475
14891476
Parameters
14901477
----------

0 commit comments

Comments
 (0)