diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2022-07-14 13:04:18 -0700 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-08-17 16:25:36 -0400 |
| commit | c32f83a829b6b10a0cbc191c1368b563d4582c28 (patch) | |
| tree | c302b8fc429e2473f86cdbbd89c2e482359f1f04 /mesonbuild/modules/__init__.py | |
| parent | 6843f56f6b8e71e75c287de31686913eea5e4a44 (diff) | |
| download | meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.gz | |
modules: Add stabilization information to ModuleInfo
We're going to do more with this in the next commit, but this just adds
the information for now. This allows the next commit have 100% mv
changes for some of the modules, which makes review easier
Diffstat (limited to 'mesonbuild/modules/__init__.py')
| -rw-r--r-- | mesonbuild/modules/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/modules/__init__.py b/mesonbuild/modules/__init__.py index 068194026..de1cd5662 100644 --- a/mesonbuild/modules/__init__.py +++ b/mesonbuild/modules/__init__.py @@ -173,6 +173,8 @@ class ModuleInfo: name: str added: T.Optional[str] = None deprecated: T.Optional[str] = None + unstable: bool = False + stabilized: T.Optional[str] = None class NewExtensionModule(ModuleObject): |
