meson-python 0.17.0__tar.gz → 0.18.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {meson_python-0.17.0 → meson_python-0.18.0}/.cirrus.yml +6 -6
- {meson_python-0.17.0 → meson_python-0.18.0}/.github/workflows/docs.yml +7 -7
- {meson_python-0.17.0 → meson_python-0.18.0}/.github/workflows/tests.yml +9 -42
- {meson_python-0.17.0 → meson_python-0.18.0}/CHANGELOG.rst +39 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/PKG-INFO +16 -36
- {meson_python-0.17.0 → meson_python-0.18.0}/RELEASE.rst +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/alpine-3.docker +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/archlinux.docker +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/debian-11.docker +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/debian-12.docker +1 -1
- meson_python-0.17.0/ci/fedora-37.docker → meson_python-0.18.0/ci/fedora-41.docker +2 -2
- meson_python-0.18.0/docs/changelog.rst +416 -0
- meson_python-0.18.0/docs/conf.py +31 -0
- meson_python-0.18.0/docs/how-to-guides/shared-libraries.rst +254 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/index.rst +1 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/reference/limitations.rst +0 -15
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/reference/meson-compatibility.rst +15 -2
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/reference/pyproject-settings.rst +13 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/spelling_wordlist.txt +0 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/meson.build +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/__init__.py +147 -53
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_rpath.py +44 -18
- {meson_python-0.17.0 → meson_python-0.18.0}/pyproject.toml +12 -14
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/conftest.py +25 -6
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/full-metadata/pyproject.toml +1 -1
- meson_python-0.18.0/tests/packages/license-pep639/LICENSES/BSD-3-Clause.txt +1 -0
- meson_python-0.18.0/tests/packages/license-pep639/LICENSES/MIT.txt +1 -0
- meson_python-0.18.0/tests/packages/license-pep639/meson.build +5 -0
- meson_python-0.18.0/tests/packages/license-pep639/pyproject.toml +13 -0
- meson_python-0.18.0/tests/packages/link-against-local-lib/__init__.py +20 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/link-against-local-lib/examplemod.c +2 -2
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/link-against-local-lib/lib/examplelib.c +2 -0
- meson_python-0.18.0/tests/packages/link-against-local-lib/lib/examplelib.h +16 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/link-against-local-lib/lib/meson.build +1 -0
- meson_python-0.18.0/tests/packages/link-against-local-lib/meson.build +31 -0
- meson_python-0.18.0/tests/packages/link-against-local-lib/pyproject.toml +10 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/foo/__init__.py +8 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/foo/_examplemod.c +37 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/foo/meson.build +16 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/meson.build +17 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/pyproject.toml +15 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/subprojects/bar/bar_dll.h +19 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/subprojects/bar/examplelib.c +9 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/subprojects/bar/examplelib.h +7 -0
- meson_python-0.18.0/tests/packages/link-library-in-subproject/subprojects/bar/meson.build +36 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/meson.build +9 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/__init__.py +51 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/_examplemod.c +51 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/examplelib.c +9 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/examplelib.h +7 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/meson.build +41 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/sub/examplelib2.c +9 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/sub/examplelib2.h +7 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/sub/meson.build +16 -0
- meson_python-0.18.0/tests/packages/sharedlib-in-package/mypkg/sub/mypkg_dll.h +23 -0
- meson_python-0.18.0/tests/packages/subdirs/meson.build +12 -0
- meson_python-0.18.0/tests/packages/symlinks/__init__.py +3 -0
- meson_python-0.18.0/tests/packages/symlinks/meson.build +16 -0
- meson_python-0.18.0/tests/packages/symlinks/pyproject.toml +11 -0
- meson_python-0.18.0/tests/packages/symlinks/submodule/__init__.py +3 -0
- meson_python-0.18.0/tests/packages/symlinks/submodule/aaa.py +6 -0
- meson_python-0.18.0/tests/packages/symlinks/submodule/bbb.py +6 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_consistency.py +9 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_metadata.py +31 -2
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_project.py +131 -2
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_sdist.py +47 -30
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_tags.py +1 -1
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_wheel.py +48 -16
- meson_python-0.17.0/docs/conf.py +0 -109
- meson_python-0.17.0/docs/static/css/contributors.css +0 -25
- meson_python-0.17.0/noxfile.py +0 -66
- meson_python-0.17.0/tests/packages/link-against-local-lib/lib/examplelib.h +0 -5
- meson_python-0.17.0/tests/packages/link-against-local-lib/meson.build +0 -17
- meson_python-0.17.0/tests/packages/missing-version/meson.build +0 -5
- meson_python-0.17.0/tests/packages/missing-version/pyproject.toml +0 -10
- meson_python-0.17.0/tests/packages/subdirs/meson.build +0 -29
- {meson_python-0.17.0 → meson_python-0.18.0}/.gitignore +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/.mailmap +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/.pre-commit-config.yaml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/.readthedocs.yaml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/LICENSE +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/LICENSES/MIT.txt +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/README.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/debian-unstable.docker +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/manylinux.docker +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/miniconda.docker +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/ci/opensuse-15.docker +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/codecov.yml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/about.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/examples/spam/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/examples/spam/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/examples/spam/src/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/examples/spam/src/spammodule.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/explanations/default-options.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/explanations/design-old.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/how-to-guides/config-settings.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/how-to-guides/debug-builds.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/how-to-guides/editable-installs.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/how-to-guides/meson-args.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/how-to-guides/sdist.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/projects-using-meson-python.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/reference/config-settings.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/reference/environment-variables.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/spelling_wordlist.txt.license +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/docs/tutorials/introduction.rst +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_compat.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_editable.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_tags.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_util.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/mesonpy/_wheelfile.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/more/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/more/baz.pyx +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/more/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/namespace/bar.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/complex/namespace/foo.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/extension.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/foo.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/move.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/complex/test.pyx +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/configure-data/configure_data.py.in +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/configure-data/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/configure-data/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/custom-target-dir/codegen.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/custom-target-dir/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/custom-target-dir/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/detect-compiler/detect_compiler.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/detect-compiler/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/detect-compiler/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/dist-script/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/dist-script/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/dynamic-version/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/dynamic-version/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/encoding/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/encoding/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/encoding//343/203/206/343/202/271/343/203/210.py" +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable/example.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable-bit/example-script.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable-bit/example.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable-bit/executable_module.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable-bit/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/executable-bit/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/full-metadata/LICENSE +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/full-metadata/README.md +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/full-metadata/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/example-script.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/example.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/executable_module.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/generate_version.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/generated-files/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/imports-itself-during-build/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/imports-itself-during-build/plat.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/imports-itself-during-build/pure.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/imports-itself-during-build/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/nested/deep/deep.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/nested/deep/excluded.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/nested/nested.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/strip/excluded.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/strip/module.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/subdir/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/subdir/excluded/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/subdir/excluded.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/install-subdir/subdir/test.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/library/example.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/library/examplelib.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/library/examplelib.h +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/library/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/library/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/license-file/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/license-file/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/license-file/something/LICENSE.custom +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/limited-api/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/limited-api/meson.options +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/limited-api/module.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/limited-api/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/long-path/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/long-path/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/missing-dynamic-version/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/missing-dynamic-version/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/missing-meson-version/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/missing-meson-version/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/module-types/file.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/module-types/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/module-types/namespace/data.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/module-types/native.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/module-types/package/__init__.py +0 -0
- {meson_python-0.17.0/tests/packages/link-against-local-lib → meson_python-0.18.0/tests/packages/module-types}/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/pure/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/pure/pure.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/pure/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-and-platlib/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-and-platlib/plat.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-and-platlib/pure.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-and-platlib/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-platlib-split/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-platlib-split/plat.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-platlib-split/pure.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/purelib-platlib-split/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/cy_extmod.pyx +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/extmod.c +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/submod/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/mypkg/submod/unknown_filetype.npq +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/scipy-like/tools/generate_config.py +0 -0
- {meson_python-0.17.0/tests/packages/module-types → meson_python-0.18.0/tests/packages/sharedlib-in-package}/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/data.txt +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/data.txt.license +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/simple/test.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subdirs/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subdirs/subdirs/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subdirs/subdirs/a/__init__.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subdirs/subdirs/a/b/c.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subdirs/subdirs/b/c.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subproject/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subproject/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subproject/subproject.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subproject/subprojects/dep/dep.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/subproject/subprojects/dep/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/unknown-user-args-meson-args/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/unknown-user-args-top-level/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/unsupported-python-version/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/unsupported-python-version/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/user-args/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/user-args/pure.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/user-args/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/vendored-meson/meson.build +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/vendored-meson/meson_options.txt +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/vendored-meson/pyproject.toml +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/packages/vendored-meson/third-party/meson.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_editable.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_examples.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_options.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_output.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_pep517.py +0 -0
- {meson_python-0.17.0 → meson_python-0.18.0}/tests/test_wheelfile.py +0 -0
|
@@ -41,9 +41,9 @@ debian-unstable_task:
|
|
|
41
41
|
cpu: 1
|
|
42
42
|
<< : *test
|
|
43
43
|
|
|
44
|
-
fedora-
|
|
44
|
+
fedora-41_task:
|
|
45
45
|
container:
|
|
46
|
-
dockerfile: ci/fedora-
|
|
46
|
+
dockerfile: ci/fedora-41.docker
|
|
47
47
|
cpu: 1
|
|
48
48
|
<< : *test
|
|
49
49
|
|
|
@@ -55,12 +55,12 @@ manylinux-python3.13t_task:
|
|
|
55
55
|
PATH: "/opt/python/cp313-cp313t/bin/:${PATH}"
|
|
56
56
|
<< : *test
|
|
57
57
|
|
|
58
|
-
manylinux-python3.
|
|
58
|
+
manylinux-python3.8_task:
|
|
59
59
|
container:
|
|
60
60
|
dockerfile: ci/manylinux.docker
|
|
61
61
|
cpu: 1
|
|
62
62
|
env:
|
|
63
|
-
PATH: "/opt/python/
|
|
63
|
+
PATH: "/opt/python/cp38-cp38/bin/:${PATH}"
|
|
64
64
|
<< : *test
|
|
65
65
|
|
|
66
66
|
miniconda_task:
|
|
@@ -77,8 +77,8 @@ opensuse-15_task:
|
|
|
77
77
|
|
|
78
78
|
freebsd_task:
|
|
79
79
|
freebsd_instance:
|
|
80
|
-
image_family: freebsd-14-
|
|
81
|
-
install_script: pkg install -y git ninja
|
|
80
|
+
image_family: freebsd-14-2
|
|
81
|
+
install_script: pkg install -y git ninja patchelf
|
|
82
82
|
<< : *test
|
|
83
83
|
|
|
84
84
|
macos-arm64_task:
|
|
@@ -6,8 +6,12 @@ name: docs
|
|
|
6
6
|
|
|
7
7
|
on:
|
|
8
8
|
push:
|
|
9
|
-
|
|
10
|
-
-
|
|
9
|
+
branches:
|
|
10
|
+
- main
|
|
11
|
+
paths:
|
|
12
|
+
- docs/**
|
|
13
|
+
- CHANGELOG.rst
|
|
14
|
+
- README.md
|
|
11
15
|
pull_request:
|
|
12
16
|
branches:
|
|
13
17
|
- main
|
|
@@ -16,10 +20,6 @@ on:
|
|
|
16
20
|
- docs/**
|
|
17
21
|
- CHANGELOG.rst
|
|
18
22
|
- README.md
|
|
19
|
-
workflow_dispatch:
|
|
20
|
-
inputs:
|
|
21
|
-
tag:
|
|
22
|
-
required: true
|
|
23
23
|
|
|
24
24
|
jobs:
|
|
25
25
|
|
|
@@ -46,6 +46,6 @@ jobs:
|
|
|
46
46
|
environment:
|
|
47
47
|
name: github-pages
|
|
48
48
|
runs-on: ubuntu-latest
|
|
49
|
-
if: ${{ github.
|
|
49
|
+
if: ${{ github.ref == 'refs/heads/main' }}
|
|
50
50
|
steps:
|
|
51
51
|
- uses: actions/deploy-pages@v4
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
50
50
|
- macos-13
|
|
51
51
|
- windows-latest
|
|
52
52
|
python:
|
|
53
|
-
- '3.
|
|
53
|
+
- '3.8'
|
|
54
54
|
- '3.13'
|
|
55
55
|
meson:
|
|
56
56
|
-
|
|
@@ -60,7 +60,7 @@ jobs:
|
|
|
60
60
|
- os: ubuntu-latest
|
|
61
61
|
python: 'pypy-3.9'
|
|
62
62
|
- os: ubuntu-latest
|
|
63
|
-
python: 'pypy-3.
|
|
63
|
+
python: 'pypy-3.11'
|
|
64
64
|
- os: ubuntu-latest
|
|
65
65
|
python: '3.8'
|
|
66
66
|
- os: ubuntu-latest
|
|
@@ -70,9 +70,6 @@ jobs:
|
|
|
70
70
|
# Test with older supported Meson version. Meson up to
|
|
71
71
|
# version 1.2.3 requires distutils, which has been removed
|
|
72
72
|
# from the stdlib in Python 3.12, thus test with Pythn 3.11.
|
|
73
|
-
- os: ubuntu-latest
|
|
74
|
-
python: '3.11'
|
|
75
|
-
meson: '~=0.63.3'
|
|
76
73
|
- os: ubuntu-latest
|
|
77
74
|
python: '3.11'
|
|
78
75
|
meson: '~=0.64.0'
|
|
@@ -87,7 +84,13 @@ jobs:
|
|
|
87
84
|
meson: '~=1.2.3'
|
|
88
85
|
- os: ubuntu-latest
|
|
89
86
|
python: '3.12'
|
|
90
|
-
meson: '~=1.3'
|
|
87
|
+
meson: '~=1.3.0'
|
|
88
|
+
- os: ubuntu-latest
|
|
89
|
+
python: '3.12'
|
|
90
|
+
meson: '~=1.4.0'
|
|
91
|
+
- os: ubuntu-latest
|
|
92
|
+
python: '3.12'
|
|
93
|
+
meson: '~=1.5.0'
|
|
91
94
|
# Test with Meson master branch.
|
|
92
95
|
- os: ubuntu-latest
|
|
93
96
|
python: '3.12'
|
|
@@ -95,10 +98,6 @@ jobs:
|
|
|
95
98
|
- os: windows-latest
|
|
96
99
|
python: '3.12'
|
|
97
100
|
meson: '@git+https://github.com/mesonbuild/meson.git'
|
|
98
|
-
# Test with oldest supported pyproject-metadata
|
|
99
|
-
- os: ubuntu-latest
|
|
100
|
-
python: '3.12'
|
|
101
|
-
pyproject_metadata: '==0.7.1'
|
|
102
101
|
|
|
103
102
|
steps:
|
|
104
103
|
- name: Checkout
|
|
@@ -253,38 +252,6 @@ jobs:
|
|
|
253
252
|
run: python -m pytest --showlocals -vv
|
|
254
253
|
shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
|
|
255
254
|
|
|
256
|
-
pyston:
|
|
257
|
-
runs-on: ubuntu-20.04
|
|
258
|
-
strategy:
|
|
259
|
-
fail-fast: false
|
|
260
|
-
matrix:
|
|
261
|
-
python:
|
|
262
|
-
- '3.8'
|
|
263
|
-
meson:
|
|
264
|
-
-
|
|
265
|
-
|
|
266
|
-
steps:
|
|
267
|
-
- name: Checkout
|
|
268
|
-
uses: actions/checkout@v4
|
|
269
|
-
|
|
270
|
-
- name: Install pyston
|
|
271
|
-
run: |
|
|
272
|
-
wget https://github.com/pyston/pyston/releases/download/pyston_2.3.5/pyston_2.3.5_20.04_amd64.deb
|
|
273
|
-
sudo apt install $(pwd)/pyston_2.3.5_20.04_amd64.deb
|
|
274
|
-
|
|
275
|
-
- name: Install Ninja
|
|
276
|
-
run: sudo apt-get install ninja-build
|
|
277
|
-
|
|
278
|
-
- name: Install Meson
|
|
279
|
-
run: python -m pip install "meson ${{ matrix.meson }}"
|
|
280
|
-
if: ${{ matrix.meson }}
|
|
281
|
-
|
|
282
|
-
- name: Install
|
|
283
|
-
run: pyston -m pip install .[test]
|
|
284
|
-
|
|
285
|
-
- name: Run tests
|
|
286
|
-
run: pyston -m pytest --showlocals -vv
|
|
287
|
-
|
|
288
255
|
homebrew:
|
|
289
256
|
runs-on: macos-latest
|
|
290
257
|
strategy:
|
|
@@ -11,6 +11,44 @@
|
|
|
11
11
|
Changelog
|
|
12
12
|
+++++++++
|
|
13
13
|
|
|
14
|
+
0.18.0
|
|
15
|
+
======
|
|
16
|
+
|
|
17
|
+
- Drop Python 3.7 support.
|
|
18
|
+
- Bump minimum required Meson version to 0.64.0.
|
|
19
|
+
- Bump minimum required ``pyproject-metadata`` version to 0.9.0 to enable
|
|
20
|
+
support for PEP 639.
|
|
21
|
+
- Bump minimum required ``packaging`` version to 23.2. ``pyproject-metadata``
|
|
22
|
+
version 0.9.1 requires this version of ``packaging`` but fails to record the
|
|
23
|
+
version requirement in the package metadata. Enforcing the version
|
|
24
|
+
requirement in ``meson-python`` allows fixing possible dependency problems
|
|
25
|
+
without having ``meson-python`` depend on a very recent
|
|
26
|
+
``pyproject-metadata`` release.
|
|
27
|
+
- Add support for PEP 639 metadata fields. Canonicalization and validation of
|
|
28
|
+
the license expression requires ``packaging`` version 24.2 or later.
|
|
29
|
+
- Add support for declaring the ``licence`` and ``license-files`` as dynamic
|
|
30
|
+
fields in ``pyproject.toml`` to extract the package license and license
|
|
31
|
+
files from the ones declared via the ``project()`` call in
|
|
32
|
+
``meson.build``. This requires Meson version 1.6.0 or later.
|
|
33
|
+
- Add support for ``RPATH`` handling on SunOS.
|
|
34
|
+
- Include shared libraries built as part of the Meson project in the Python
|
|
35
|
+
wheels also on Windows, when explicitly enabled via the
|
|
36
|
+
``tool.meson-python.allow-windows-internal-shared-libs`` project setting.
|
|
37
|
+
- Add support for symbolic links that point to files within the source tree.
|
|
38
|
+
They are now included as regular files in the sdist archive.
|
|
39
|
+
|
|
40
|
+
Daniele Nicolodi, Marcel Telka, Ralf Gommers --- 30-04-2025.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
0.17.1
|
|
44
|
+
======
|
|
45
|
+
|
|
46
|
+
- Update tests to work with newly released ``pyproject-metadata`` 0.9.0.
|
|
47
|
+
- Fix tests to work when not executed in a git work tree.
|
|
48
|
+
|
|
49
|
+
Daniele Nicolodi --- 23-10-2024.
|
|
50
|
+
|
|
51
|
+
|
|
14
52
|
0.17.0
|
|
15
53
|
======
|
|
16
54
|
|
|
@@ -37,6 +75,7 @@ Changelog
|
|
|
37
75
|
Christian Clauss, Daniele Nicolodi, Jonathan J. Helmus, Leo Singer, Loïc
|
|
38
76
|
Estève, Michael Simacek, Ralf Gommers, Simon McVittie --- 19-10-2024.
|
|
39
77
|
|
|
78
|
+
|
|
40
79
|
0.16.0
|
|
41
80
|
======
|
|
42
81
|
|
|
@@ -1,44 +1,25 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: meson-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.0
|
|
4
4
|
Summary: Meson Python build backend (PEP 517)
|
|
5
5
|
Keywords: meson,build,backend,pep517,package
|
|
6
|
-
Home-page: https://github.com/mesonbuild/meson-python
|
|
7
6
|
Maintainer-Email: Ralf Gommers <ralf.gommers@gmail.com>, Daniele Nicolodi <daniele@grinta.net>, Henry Schreiner <HenrySchreinerIII@gmail.com>, Thomas Li <47963215+lithomas1@users.noreply.github.com>
|
|
8
|
-
License:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
|
12
|
-
copy of this software and associated documentation files (the "Software"),
|
|
13
|
-
to deal in the Software without restriction, including without limitation
|
|
14
|
-
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
15
|
-
and/or sell copies of the Software, and to permit persons to whom the
|
|
16
|
-
Software is furnished to do so, subject to the following conditions:
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice (including the next
|
|
19
|
-
paragraph) shall be included in all copies or substantial portions of the
|
|
20
|
-
Software.
|
|
21
|
-
|
|
22
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
25
|
-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
27
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
28
|
-
DEALINGS IN THE SOFTWARE.
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
License-File: LICENSES/MIT.txt
|
|
29
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
30
10
|
Classifier: Programming Language :: Python
|
|
31
11
|
Classifier: Topic :: Software Development :: Build Tools
|
|
32
|
-
Project-URL:
|
|
33
|
-
Project-URL:
|
|
34
|
-
Project-URL:
|
|
35
|
-
Project-URL:
|
|
36
|
-
Requires-Python: >=3.
|
|
37
|
-
Requires-Dist: meson>=0.
|
|
12
|
+
Project-URL: homepage, https://github.com/mesonbuild/meson-python
|
|
13
|
+
Project-URL: repository, https://github.com/mesonbuild/meson-python
|
|
14
|
+
Project-URL: documentation, https://mesonbuild.com/meson-python/
|
|
15
|
+
Project-URL: changelog, https://mesonbuild.com/meson-python/changelog.html
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Requires-Dist: meson>=0.64.0; python_version < "3.12"
|
|
38
18
|
Requires-Dist: meson>=1.2.3; python_version >= "3.12"
|
|
39
|
-
Requires-Dist: packaging>=
|
|
40
|
-
Requires-Dist: pyproject-metadata>=0.
|
|
19
|
+
Requires-Dist: packaging>=23.2
|
|
20
|
+
Requires-Dist: pyproject-metadata>=0.9.0
|
|
41
21
|
Requires-Dist: tomli>=1.0.0; python_version < "3.11"
|
|
22
|
+
Provides-Extra: test
|
|
42
23
|
Requires-Dist: build; extra == "test"
|
|
43
24
|
Requires-Dist: pytest>=6.0; extra == "test"
|
|
44
25
|
Requires-Dist: pytest-cov[toml]; extra == "test"
|
|
@@ -46,13 +27,12 @@ Requires-Dist: pytest-mock; extra == "test"
|
|
|
46
27
|
Requires-Dist: cython>=3.0.3; extra == "test"
|
|
47
28
|
Requires-Dist: wheel; extra == "test"
|
|
48
29
|
Requires-Dist: typing-extensions>=3.7.4; python_version < "3.11" and extra == "test"
|
|
49
|
-
|
|
50
|
-
Requires-Dist:
|
|
30
|
+
Provides-Extra: docs
|
|
31
|
+
Requires-Dist: furo>=2024.08.06; extra == "docs"
|
|
32
|
+
Requires-Dist: sphinx~=8.1.0; extra == "docs"
|
|
51
33
|
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "docs"
|
|
52
34
|
Requires-Dist: sphinx-design>=0.1.0; extra == "docs"
|
|
53
35
|
Requires-Dist: sphinxext-opengraph>=0.7.0; extra == "docs"
|
|
54
|
-
Provides-Extra: test
|
|
55
|
-
Provides-Extra: docs
|
|
56
36
|
Description-Content-Type: text/x-rst
|
|
57
37
|
|
|
58
38
|
.. SPDX-FileCopyrightText: 2021 The meson-python developers
|
|
@@ -19,7 +19,7 @@ After that is done, you may release the project by following these steps:
|
|
|
19
19
|
|
|
20
20
|
#. Create the release commit
|
|
21
21
|
|
|
22
|
-
#. Bump the versions in ``
|
|
22
|
+
#. Bump the versions in ``pyproject.toml`` and in ``mesonpy/__init__.py``.
|
|
23
23
|
#. Create ``CHANGELOG.rst`` section for the new release and fill it.
|
|
24
24
|
#. The commit message should read: ``REL: set version to X.Y.Z``
|
|
25
25
|
|