diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-09-06 00:42:21 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-09-19 21:13:37 -0400 |
commit | eb69fed2f64a20fa3098dc47aa4a64fb68ba7c35 (patch) | |
tree | 9db2338d7e57560e457121ff72666fa6e22d3c3d /docs/markdown | |
parent | b8e53ed5ea9c2a3eec19396233e646d4c1f667ae (diff) | |
download | meson-eb69fed2f64a20fa3098dc47aa4a64fb68ba7c35.zip meson-eb69fed2f64a20fa3098dc47aa4a64fb68ba7c35.tar.gz meson-eb69fed2f64a20fa3098dc47aa4a64fb68ba7c35.tar.bz2 |
python module: allow specifying the pure kwarg in the installation object
Fixes #10523
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/snippets/python-installation-pure.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/snippets/python-installation-pure.md b/docs/markdown/snippets/python-installation-pure.md new file mode 100644 index 0000000..905c7b8 --- /dev/null +++ b/docs/markdown/snippets/python-installation-pure.md @@ -0,0 +1,8 @@ +## python.find_installation() now accepts pure argument + +The default value of `pure:` for `py.install_sources()` and +`py.get_install_dir()` can now be changed by explicitly passing a `pure:` kwarg +to `find_installation()`. + +This can be used to ensure that multiple `install_sources()` invocations do not +forget to specify the kwarg each time. |