From 0aa399a3f3cad4dd69b2ae8014115ab66c4ca66b Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Tue, 13 Sep 2022 15:39:30 -0500 Subject: [PATCH] fix deprecation timeline --- grudge/trace_pair.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grudge/trace_pair.py b/grudge/trace_pair.py index 3b1f10821..1f49ae0d6 100644 --- a/grudge/trace_pair.py +++ b/grudge/trace_pair.py @@ -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) @@ -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) @@ -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)