aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/unstable_simd.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-07-14 13:04:18 -0700
committerEli Schwartz <eschwartz93@gmail.com>2022-08-17 16:25:36 -0400
commitc32f83a829b6b10a0cbc191c1368b563d4582c28 (patch)
treec302b8fc429e2473f86cdbbd89c2e482359f1f04 /mesonbuild/modules/unstable_simd.py
parent6843f56f6b8e71e75c287de31686913eea5e4a44 (diff)
downloadmeson-c32f83a829b6b10a0cbc191c1368b563d4582c28.zip
meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.gz
meson-c32f83a829b6b10a0cbc191c1368b563d4582c28.tar.bz2
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/unstable_simd.py')
-rw-r--r--mesonbuild/modules/unstable_simd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/unstable_simd.py b/mesonbuild/modules/unstable_simd.py
index 6766380..a33022d 100644
--- a/mesonbuild/modules/unstable_simd.py
+++ b/mesonbuild/modules/unstable_simd.py
@@ -19,7 +19,7 @@ from . import ExtensionModule, ModuleInfo
class SimdModule(ExtensionModule):
- INFO = ModuleInfo('SIMD', '0.42.0')
+ INFO = ModuleInfo('SIMD', '0.42.0', unstable=True)
def __init__(self, interpreter):
super().__init__(interpreter)