diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-22 23:11:59 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-22 23:11:59 +0300 |
commit | 0cf4a6ab3aa3672d74091e28f6535477794d9839 (patch) | |
tree | b0a2069e5e5bb28d8a92fe0c59d7f100128402d2 /docs/markdown/snippets/deprecated_python3_module.md | |
parent | d1f3f1d023566a54dfc65dc6067a0416b7353dff (diff) | |
download | meson-0.48.0.tar.gz |
Updated release note page.0.48.0
Diffstat (limited to 'docs/markdown/snippets/deprecated_python3_module.md')
-rw-r--r-- | docs/markdown/snippets/deprecated_python3_module.md | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/markdown/snippets/deprecated_python3_module.md b/docs/markdown/snippets/deprecated_python3_module.md deleted file mode 100644 index 2c4683001..000000000 --- a/docs/markdown/snippets/deprecated_python3_module.md +++ /dev/null @@ -1,18 +0,0 @@ -## python3 module is deprecated - -A generic module `python` has been added in Meson `0.46.0` and has a superset of -the features implemented by the previous `python3` module. - -In most cases, it is a simple matter of renaming: -```meson -py3mod = import('python3') -python = py3mod.find_python() -``` - -becomes - -```meson -pymod = import('python') -python = pymod.find_installation() -``` - |