From 424a5b80de08883d9a0428870fea963c6c32e1d1 Mon Sep 17 00:00:00 2001 From: aaronayres35 <36972686+aaronayres35@users.noreply.github.com> Date: Wed, 13 Jan 2021 12:16:33 -0600 Subject: [PATCH] Mention Undo is deprecated in docs (#278) * add a warning to the undo section of the documentation mentioning the deprecation and refering to pyface.undo * Update docs/source/undo/Introduction.rst Co-authored-by: Poruri Sai Rahul Co-authored-by: Poruri Sai Rahul --- docs/source/undo/Introduction.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/undo/Introduction.rst b/docs/source/undo/Introduction.rst index 89dee28d6..0f6ac30d3 100644 --- a/docs/source/undo/Introduction.rst +++ b/docs/source/undo/Introduction.rst @@ -1,6 +1,12 @@ Undo Framework ============== +.. warning:: + apptools.undo has been deprecated and moved to + `Pyface `_. It will be removed in a + future release. Please use `pyface.undo `_ + instead. + The Undo Framework is a component of the Enthought Tool Suite that provides developers with an API that implements the standard pattern for do/undo/redo commands.