summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/python_find_installation_modules.md
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-06-11 10:25:36 -0700
committerJussi Pakkanen <jpakkane@gmail.com>2019-06-12 14:13:20 +0300
commit15ab1f64f964ce5d3ab254b5698f7325754cc2b7 (patch)
tree682332298358e35cc40e42819c0e5f7fe1c958de /docs/markdown/snippets/python_find_installation_modules.md
parent3c461bcf4fe561dd77ba80420c78936b92f07c1b (diff)
downloadmeson-15ab1f64f964ce5d3ab254b5698f7325754cc2b7.tar.gz
modules/python: add a modules keyword argument
This mirrors the modules keyword argument that some dependencies (such as qt and llvm) take. This allows an easier method to determine if modules are installed.
Diffstat (limited to 'docs/markdown/snippets/python_find_installation_modules.md')
-rw-r--r--docs/markdown/snippets/python_find_installation_modules.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/snippets/python_find_installation_modules.md b/docs/markdown/snippets/python_find_installation_modules.md
new file mode 100644
index 000000000..a3719f277
--- /dev/null
+++ b/docs/markdown/snippets/python_find_installation_modules.md
@@ -0,0 +1,9 @@
+## New modules kwarg for python.find_installation
+
+This mirrors the modules argument that some kinds of dependencies (such as
+qt, llvm, and cmake based dependencies) take, allowing you to check that a
+particular module is available when getting a python version.
+
+```meson
+py = import('python').find_installation('python3', modules : ['numpy'])
+``` \ No newline at end of file