Skip to content

Commit

Permalink
fix deprecation timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm authored and inducer committed Sep 26, 2022
1 parent e465a0b commit 0aa399a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grudge/trace_pair.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __init__(self, dd: DOFDesc, *,
if not isinstance(dd, DOFDesc):
warn("Constructing a TracePair with a first argument that is not "
"exactly a DOFDesc (but convertible to one) is deprecated. "
"This will stop working in July 2022. "
"This will stop working in December 2022. "
"Pass an actual DOFDesc instead.",
DeprecationWarning, stacklevel=2)
dd = dof_desc.as_dofdesc(dd)
Expand Down Expand Up @@ -217,7 +217,7 @@ def bdry_trace_pair(
if not isinstance(dd, DOFDesc):
warn("Calling bdry_trace_pair with a first argument that is not "
"exactly a DOFDesc (but convertible to one) is deprecated. "
"This will stop working in July 2022. "
"This will stop working in December 2022. "
"Pass an actual DOFDesc instead.",
DeprecationWarning, stacklevel=2)
dd = dof_desc.as_dofdesc(dd)
Expand Down Expand Up @@ -251,7 +251,7 @@ def bv_trace_pair(
if not isinstance(dd, DOFDesc):
warn("Calling bv_trace_pair with a first argument that is not "
"exactly a DOFDesc (but convertible to one) is deprecated. "
"This will stop working in July 2022. "
"This will stop working in December 2022. "
"Pass an actual DOFDesc instead.",
DeprecationWarning, stacklevel=2)
dd = dof_desc.as_dofdesc(dd)
Expand Down

0 comments on commit 0aa399a

Please sign in to comment.