From b80d8d60306ebd9f78dbac5306887d60e4e624e4 Mon Sep 17 00:00:00 2001 From: Carlos Muniz Date: Fri, 4 Feb 2022 11:45:44 -0500 Subject: [PATCH] refactor: Remove all mentions of symmath --- docs/guides/conf.py | 2 -- docs/guides/docstrings/common_lib.rst | 1 - scripts/verify-dunder-init.sh | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/guides/conf.py b/docs/guides/conf.py index 58441b5c1b..f3038eb462 100644 --- a/docs/guides/conf.py +++ b/docs/guides/conf.py @@ -22,7 +22,6 @@ sys.path.insert(0, root) sys.path.append(root / "docs/guides") sys.path.append(root / "common/lib/capa") sys.path.append(root / "common/lib/safe_lxml") -sys.path.append(root / "common/lib/symmath") sys.path.append(root / "common/lib/xmodule") # Use a settings module that allows all LMS and Studio code to be imported @@ -225,7 +224,6 @@ modules = { 'cms': 'cms', 'common/lib/capa/capa': 'common/lib/capa', 'common/lib/safe_lxml/safe_lxml': 'common/lib/safe_lxml', - 'common/lib/symmath/symmath': 'common/lib/symmath', 'common/lib/xmodule/xmodule': 'common/lib/xmodule', 'lms': 'lms', 'openedx': 'openedx', diff --git a/docs/guides/docstrings/common_lib.rst b/docs/guides/docstrings/common_lib.rst index 419063bd5b..4a4a1d40d6 100644 --- a/docs/guides/docstrings/common_lib.rst +++ b/docs/guides/docstrings/common_lib.rst @@ -10,5 +10,4 @@ out from edx-platform into separate packages at some point. common/lib/capa/modules common/lib/safe_lxml/modules - common/lib/symmath/modules common/lib/xmodule/modules diff --git a/scripts/verify-dunder-init.sh b/scripts/verify-dunder-init.sh index 5055138e3d..bc5da5860f 100755 --- a/scripts/verify-dunder-init.sh +++ b/scripts/verify-dunder-init.sh @@ -38,7 +38,7 @@ exclude+='|^common/test/data/?.*$' # * common/lib/xmodule -> EXCLUDE from check. # * common/lib/xmodule/xmodule/modulestore -> INCLUDE in check. exclude+='|^common/lib$' -exclude+='|^common/lib/(capa|safe_lxml|sandbox-packages|symmath|xmodule)$' +exclude+='|^common/lib/(capa|safe_lxml|sandbox-packages|xmodule)$' # Docs, scripts. exclude+='|^docs/.*$'