@@ -1096,7 +1096,7 @@ def sort(self: Self, *, descending: bool = False, nulls_last: bool = False) -> S
10961096 "Note: this will remain available in `narwhals.stable.v1`.\n "
10971097 "See https://narwhals-dev.github.io/narwhals/backcompat/ for more information.\n "
10981098 )
1099- issue_deprecation_warning (msg , _version = "1.22 .0" )
1099+ issue_deprecation_warning (msg , _version = "1.23 .0" )
11001100 return self .__class__ (
11011101 lambda plx : self ._to_compliant_expr (plx ).sort (
11021102 descending = descending , nulls_last = nulls_last
@@ -1485,7 +1485,7 @@ def sample(
14851485 "Note: this will remain available in `narwhals.stable.v1`.\n "
14861486 "See https://narwhals-dev.github.io/narwhals/backcompat/ for more information.\n "
14871487 )
1488- issue_deprecation_warning (msg , _version = "1.22 .0" )
1488+ issue_deprecation_warning (msg , _version = "1.23 .0" )
14891489 return self .__class__ (
14901490 lambda plx : self ._to_compliant_expr (plx ).sample (
14911491 n , fraction = fraction , with_replacement = with_replacement , seed = seed
@@ -1753,7 +1753,7 @@ def head(self: Self, n: int = 10) -> Self:
17531753 "Note: this will remain available in `narwhals.stable.v1`.\n "
17541754 "See https://narwhals-dev.github.io/narwhals/backcompat/ for more information.\n "
17551755 )
1756- issue_deprecation_warning (msg , _version = "1.22 .0" )
1756+ issue_deprecation_warning (msg , _version = "1.23 .0" )
17571757 return self .__class__ (
17581758 lambda plx : self ._to_compliant_expr (plx ).head (n ),
17591759 self ._metadata .with_kind_and_extra_open_window (ExprKind .FILTRATION ),
@@ -1781,7 +1781,7 @@ def tail(self: Self, n: int = 10) -> Self:
17811781 "Note: this will remain available in `narwhals.stable.v1`.\n "
17821782 "See https://narwhals-dev.github.io/narwhals/backcompat/ for more information.\n "
17831783 )
1784- issue_deprecation_warning (msg , _version = "1.22 .0" )
1784+ issue_deprecation_warning (msg , _version = "1.23 .0" )
17851785 return self .__class__ (
17861786 lambda plx : self ._to_compliant_expr (plx ).tail (n ),
17871787 self ._metadata .with_kind_and_extra_open_window (ExprKind .FILTRATION ),
@@ -1876,7 +1876,7 @@ def gather_every(self: Self, n: int, offset: int = 0) -> Self:
18761876 "Note: this will remain available in `narwhals.stable.v1`.\n "
18771877 "See https://narwhals-dev.github.io/narwhals/backcompat/ for more information.\n "
18781878 )
1879- issue_deprecation_warning (msg , _version = "1.22 .0" )
1879+ issue_deprecation_warning (msg , _version = "1.23 .0" )
18801880 return self .__class__ (
18811881 lambda plx : self ._to_compliant_expr (plx ).gather_every (n = n , offset = offset ),
18821882 self ._metadata .with_kind_and_extra_open_window (ExprKind .FILTRATION ),
0 commit comments