diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-09-14 17:00:39 +0100 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-09-14 17:00:39 +0100 |
commit | 7c7c941b5f16253e50486523fd54942aaaa8b7a1 (patch) | |
tree | cee8468f5801168e9c14774bafba9e7913382492 | |
parent | 5b995dd1543b9476abfe6f1d42dc43cd5d0ea7dc (diff) | |
download | buildstream-7c7c941b5f16253e50486523fd54942aaaa8b7a1.tar.gz |
plugin.py: Add note on plugin extension support64-clarify-about-plugins-importing-other-plugins
-rw-r--r-- | buildstream/plugin.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/buildstream/plugin.py b/buildstream/plugin.py index 775215462..a9a46a2be 100644 --- a/buildstream/plugin.py +++ b/buildstream/plugin.py @@ -44,6 +44,15 @@ class Plugin(): Some common features to both Sources and Elements are found in this class. + + .. note:: + + Extending plugins outside of :mod:`Source + <buildstream.source>`, :mod:`Element <buildstream.element>`, + :mod:`BuildElement <buildstream.buildelement>` and + :mod:`ScriptElement <buildstream.scriptelement>` is currently + not supported. + """ BST_REQUIRED_VERSION_MAJOR = 0 |