From c4230a352dcdc8a18296621089c33f1ad3c8043d Mon Sep 17 00:00:00 2001 From: Owen W. Taylor Date: Apr 29 2022 19:47:08 +0000 Subject: LocalBuildConfiguration: Set ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False The default LocalBuildConfiguration builds against Fedora - which has ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False on the server side. Match that to avoid warnings that f33 isn't in x.y.z form. --- diff --git a/module_build_service/common/config.py b/module_build_service/common/config.py index 6e71fd9..f261f20 100644 --- a/module_build_service/common/config.py +++ b/module_build_service/common/config.py @@ -82,6 +82,9 @@ class LocalBuildConfiguration(BaseConfiguration): RPMS_ALLOW_REPOSITORY = True MODULES_ALLOW_REPOSITORY = True + # Match the Fedora server-side configuration + ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False + # Celery tasks will be executed locally for local builds CELERY_TASK_ALWAYS_EAGER = True