summaryrefslogtreecommitdiff
path: root/buildstream/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/plugin.py')
-rw-r--r--buildstream/plugin.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/buildstream/plugin.py b/buildstream/plugin.py
index 83e4d48ea..23a272389 100644
--- a/buildstream/plugin.py
+++ b/buildstream/plugin.py
@@ -41,6 +41,13 @@ class Plugin():
Some common features to both Sources and Elements are found
in this class.
"""
+
+ BST_REQUIRED_VERSION_MAJOR = 0
+ """Minimum required major version"""
+
+ BST_REQUIRED_VERSION_MINOR = 0
+ """Minimum required minor version"""
+
def __init__(self, name, context, project, provenance, type_tag):
self.name = name