Skip to content

Commit 0aa399a

Browse files
majosminducer
authored andcommitted
fix deprecation timeline
1 parent e465a0b commit 0aa399a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grudge/trace_pair.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def __init__(self, dd: DOFDesc, *,
123123
if not isinstance(dd, DOFDesc):
124124
warn("Constructing a TracePair with a first argument that is not "
125125
"exactly a DOFDesc (but convertible to one) is deprecated. "
126-
"This will stop working in July 2022. "
126+
"This will stop working in December 2022. "
127127
"Pass an actual DOFDesc instead.",
128128
DeprecationWarning, stacklevel=2)
129129
dd = dof_desc.as_dofdesc(dd)
@@ -217,7 +217,7 @@ def bdry_trace_pair(
217217
if not isinstance(dd, DOFDesc):
218218
warn("Calling bdry_trace_pair with a first argument that is not "
219219
"exactly a DOFDesc (but convertible to one) is deprecated. "
220-
"This will stop working in July 2022. "
220+
"This will stop working in December 2022. "
221221
"Pass an actual DOFDesc instead.",
222222
DeprecationWarning, stacklevel=2)
223223
dd = dof_desc.as_dofdesc(dd)
@@ -251,7 +251,7 @@ def bv_trace_pair(
251251
if not isinstance(dd, DOFDesc):
252252
warn("Calling bv_trace_pair with a first argument that is not "
253253
"exactly a DOFDesc (but convertible to one) is deprecated. "
254-
"This will stop working in July 2022. "
254+
"This will stop working in December 2022. "
255255
"Pass an actual DOFDesc instead.",
256256
DeprecationWarning, stacklevel=2)
257257
dd = dof_desc.as_dofdesc(dd)

0 commit comments

Comments
 (0)