From 47f7316f0a7098def1883ef6a2b206ca2ebb7d7d Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Fri, 12 May 2023 11:50:27 -0400 Subject: [PATCH] fix: Include common in edx-platform packages (#32231) There may be scenarios, such as third-party plugin test environments, that import edx-platform as a dependency. For those cases to run smoothly, `common` needs to be built and exposed as a recognized package. See https://discuss.openedx.org/t/how-is-the-common-package-installed/10057/2 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 02682ad619..1bad08d958 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ setup( # be reorganized to be a more conventional Python tree. packages=[ "cms", + "common", "lms", "openedx", "xmodule",