meson-python 0.19.0__tar.gz → 0.21.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.
Files changed (261) hide show
  1. {meson_python-0.19.0 → meson_python-0.21.0}/.github/workflows/docs.yml +7 -4
  2. meson_python-0.21.0/.github/workflows/pixi.lock +950 -0
  3. meson_python-0.21.0/.github/workflows/pixi.toml +32 -0
  4. {meson_python-0.19.0 → meson_python-0.21.0}/.github/workflows/release.yml +9 -5
  5. {meson_python-0.19.0 → meson_python-0.21.0}/.github/workflows/tests.yml +59 -19
  6. meson_python-0.21.0/.github/workflows/zizmor.yml +32 -0
  7. meson_python-0.21.0/.github/zizmor.yml +9 -0
  8. {meson_python-0.19.0 → meson_python-0.21.0}/.gitignore +1 -0
  9. {meson_python-0.19.0 → meson_python-0.21.0}/CHANGELOG.rst +23 -0
  10. {meson_python-0.19.0 → meson_python-0.21.0}/PKG-INFO +2 -2
  11. meson_python-0.21.0/REUSE.toml +14 -0
  12. {meson_python-0.19.0 → meson_python-0.21.0}/docs/changelog.rst +23 -0
  13. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/editable-installs.rst +12 -2
  14. {meson_python-0.19.0 → meson_python-0.21.0}/docs/reference/config-settings.rst +4 -2
  15. {meson_python-0.19.0 → meson_python-0.21.0}/docs/reference/pyproject-settings.rst +7 -0
  16. {meson_python-0.19.0 → meson_python-0.21.0}/meson.build +0 -1
  17. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/__init__.py +135 -70
  18. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/_editable.py +52 -21
  19. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/_rpath.py +2 -3
  20. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/_tags.py +5 -36
  21. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/_util.py +3 -2
  22. {meson_python-0.19.0 → meson_python-0.21.0}/mesonpy/_wheelfile.py +2 -3
  23. {meson_python-0.19.0 → meson_python-0.21.0}/pyproject.toml +2 -3
  24. {meson_python-0.19.0 → meson_python-0.21.0}/tests/conftest.py +10 -1
  25. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/limited-api/module.c +1 -1
  26. meson_python-0.21.0/tests/packages/limited-api/pyproject.toml +10 -0
  27. meson_python-0.21.0/tests/packages/limited-api-free-threaded/meson.build +14 -0
  28. meson_python-0.21.0/tests/packages/limited-api-free-threaded/module.c +33 -0
  29. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_consistency.py +12 -0
  30. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_editable.py +62 -7
  31. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_project.py +101 -0
  32. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_tags.py +44 -9
  33. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_wheel.py +14 -13
  34. meson_python-0.19.0/.cirrus.yml +0 -89
  35. meson_python-0.19.0/.readthedocs.yaml +0 -16
  36. meson_python-0.19.0/ci/alpine-3.docker +0 -7
  37. meson_python-0.19.0/ci/archlinux.docker +0 -7
  38. meson_python-0.19.0/ci/debian-11.docker +0 -7
  39. meson_python-0.19.0/ci/debian-12.docker +0 -7
  40. meson_python-0.19.0/ci/debian-unstable.docker +0 -7
  41. meson_python-0.19.0/ci/fedora-41.docker +0 -7
  42. meson_python-0.19.0/ci/manylinux.docker +0 -7
  43. meson_python-0.19.0/ci/miniconda.docker +0 -7
  44. meson_python-0.19.0/ci/opensuse-15.docker +0 -7
  45. meson_python-0.19.0/docs/spelling_wordlist.txt +0 -28
  46. meson_python-0.19.0/docs/spelling_wordlist.txt.license +0 -3
  47. meson_python-0.19.0/mesonpy/_compat.py +0 -54
  48. meson_python-0.19.0/tests/packages/install-data/data.txt.license +0 -3
  49. meson_python-0.19.0/tests/packages/simple/data.txt.license +0 -3
  50. {meson_python-0.19.0 → meson_python-0.21.0}/.gitattributes +0 -0
  51. {meson_python-0.19.0 → meson_python-0.21.0}/.mailmap +0 -0
  52. {meson_python-0.19.0 → meson_python-0.21.0}/.pre-commit-config.yaml +0 -0
  53. {meson_python-0.19.0 → meson_python-0.21.0}/.vscode/settings.json +0 -0
  54. {meson_python-0.19.0 → meson_python-0.21.0}/LICENSE +0 -0
  55. {meson_python-0.19.0 → meson_python-0.21.0}/LICENSES/MIT.txt +0 -0
  56. {meson_python-0.19.0 → meson_python-0.21.0}/README.rst +0 -0
  57. {meson_python-0.19.0 → meson_python-0.21.0}/RELEASE.rst +0 -0
  58. {meson_python-0.19.0 → meson_python-0.21.0}/codecov.yml +0 -0
  59. {meson_python-0.19.0 → meson_python-0.21.0}/docs/about.rst +0 -0
  60. {meson_python-0.19.0 → meson_python-0.21.0}/docs/conf.py +0 -0
  61. {meson_python-0.19.0 → meson_python-0.21.0}/docs/explanations/default-options.rst +0 -0
  62. {meson_python-0.19.0 → meson_python-0.21.0}/docs/explanations/design-old.rst +0 -0
  63. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/config-settings.rst +0 -0
  64. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/contributing.rst +0 -0
  65. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/debug-builds.rst +0 -0
  66. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/meson-args.rst +0 -0
  67. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/sdist.rst +0 -0
  68. {meson_python-0.19.0 → meson_python-0.21.0}/docs/how-to-guides/shared-libraries.rst +0 -0
  69. {meson_python-0.19.0 → meson_python-0.21.0}/docs/index.rst +0 -0
  70. {meson_python-0.19.0 → meson_python-0.21.0}/docs/projects-using-meson-python.rst +0 -0
  71. {meson_python-0.19.0 → meson_python-0.21.0}/docs/reference/environment-variables.rst +0 -0
  72. {meson_python-0.19.0 → meson_python-0.21.0}/docs/reference/limitations.rst +0 -0
  73. {meson_python-0.19.0 → meson_python-0.21.0}/docs/reference/meson-compatibility.rst +0 -0
  74. {meson_python-0.19.0 → meson_python-0.21.0}/docs/tutorials/introduction.rst +0 -0
  75. {meson_python-0.19.0 → meson_python-0.21.0}/tests/__init__.py +0 -0
  76. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/cmakesubproject.pyx +0 -0
  77. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/meson.build +0 -0
  78. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/pyproject.toml +0 -0
  79. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/subprojects/cmaketest/CMakeLists.txt +0 -0
  80. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/subprojects/cmaketest/cmaketest.cpp +0 -0
  81. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/subprojects/cmaketest/cmaketest.hpp +0 -0
  82. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/cmake-subproject/subprojects/cmaketest.wrap +0 -0
  83. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/__init__.py +0 -0
  84. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/more/__init__.py +0 -0
  85. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/more/baz.pyx +0 -0
  86. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/more/meson.build +0 -0
  87. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/namespace/bar.py +0 -0
  88. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/complex/namespace/foo.py +0 -0
  89. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/extension.c +0 -0
  90. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/foo.py +0 -0
  91. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/meson.build +0 -0
  92. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/move.py +0 -0
  93. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/pyproject.toml +0 -0
  94. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/complex/test.pyx +0 -0
  95. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/configure-data/configure_data.py.in +0 -0
  96. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/configure-data/meson.build +0 -0
  97. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/configure-data/pyproject.toml +0 -0
  98. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/custom-target-dir/codegen.py +0 -0
  99. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/custom-target-dir/meson.build +0 -0
  100. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/custom-target-dir/pyproject.toml +0 -0
  101. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/detect-compiler/detect_compiler.c +0 -0
  102. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/detect-compiler/meson.build +0 -0
  103. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/detect-compiler/pyproject.toml +0 -0
  104. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/dist-script/meson.build +0 -0
  105. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/dist-script/pyproject.toml +0 -0
  106. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/dynamic-version/meson.build +0 -0
  107. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/dynamic-version/pyproject.toml +0 -0
  108. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/encoding/meson.build +0 -0
  109. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/encoding/pyproject.toml +0 -0
  110. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/encoding//343/203/206/343/202/271/343/203/210.py" +0 -0
  111. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable/example.c +0 -0
  112. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable/meson.build +0 -0
  113. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable/pyproject.toml +0 -0
  114. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable-bit/example-script.py +0 -0
  115. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable-bit/example.c +0 -0
  116. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable-bit/executable_module.py +0 -0
  117. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable-bit/meson.build +0 -0
  118. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/executable-bit/pyproject.toml +0 -0
  119. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/full-metadata/LICENSE +0 -0
  120. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/full-metadata/README.md +0 -0
  121. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/full-metadata/meson.build +0 -0
  122. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/full-metadata/pyproject.toml +0 -0
  123. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/example-script.py +0 -0
  124. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/example.c +0 -0
  125. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/executable_module.py +0 -0
  126. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/generate_version.py +0 -0
  127. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/meson.build +0 -0
  128. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/generated-files/pyproject.toml +0 -0
  129. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/imports-itself-during-build/meson.build +0 -0
  130. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/imports-itself-during-build/plat.c +0 -0
  131. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/imports-itself-during-build/pure.py +0 -0
  132. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/imports-itself-during-build/pyproject.toml +0 -0
  133. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-data/__init__.py +0 -0
  134. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-data/data.txt +0 -0
  135. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-data/meson.build +0 -0
  136. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-data/pyproject.toml +0 -0
  137. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/meson.build +0 -0
  138. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/nested/deep/deep.py +0 -0
  139. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/nested/deep/excluded.py +0 -0
  140. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/nested/nested.py +0 -0
  141. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/pyproject.toml +0 -0
  142. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/strip/excluded.py +0 -0
  143. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/strip/module.py +0 -0
  144. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/subdir/__init__.py +0 -0
  145. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/subdir/excluded/__init__.py +0 -0
  146. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/subdir/excluded.py +0 -0
  147. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/install-subdir/subdir/test.py +0 -0
  148. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/library/example.c +0 -0
  149. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/library/examplelib.c +0 -0
  150. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/library/examplelib.h +0 -0
  151. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/library/meson.build +0 -0
  152. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/library/pyproject.toml +0 -0
  153. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-file/meson.build +0 -0
  154. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-file/pyproject.toml +0 -0
  155. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-file/something/LICENSE.custom +0 -0
  156. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-pep639/LICENSES/BSD-3-Clause.txt +0 -0
  157. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-pep639/LICENSES/MIT.txt +0 -0
  158. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-pep639/meson.build +0 -0
  159. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/license-pep639/pyproject.toml +0 -0
  160. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/limited-api/meson.build +0 -0
  161. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/limited-api/meson.options +0 -0
  162. {meson_python-0.19.0/tests/packages/limited-api → meson_python-0.21.0/tests/packages/limited-api-free-threaded}/pyproject.toml +0 -0
  163. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/__init__.py +0 -0
  164. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/examplemod.c +0 -0
  165. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/lib/examplelib.c +0 -0
  166. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/lib/examplelib.h +0 -0
  167. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/lib/meson.build +0 -0
  168. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/meson.build +0 -0
  169. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-against-local-lib/pyproject.toml +0 -0
  170. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/foo/__init__.py +0 -0
  171. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/foo/_examplemod.c +0 -0
  172. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/foo/meson.build +0 -0
  173. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/meson.build +0 -0
  174. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/pyproject.toml +0 -0
  175. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/subprojects/bar/bar_dll.h +0 -0
  176. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/subprojects/bar/examplelib.c +0 -0
  177. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/subprojects/bar/examplelib.h +0 -0
  178. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/link-library-in-subproject/subprojects/bar/meson.build +0 -0
  179. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/long-path/meson.build +0 -0
  180. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/long-path/pyproject.toml +0 -0
  181. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/missing-dynamic-version/meson.build +0 -0
  182. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/missing-dynamic-version/pyproject.toml +0 -0
  183. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/missing-meson-version/meson.build +0 -0
  184. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/missing-meson-version/pyproject.toml +0 -0
  185. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/file.py +0 -0
  186. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/meson.build +0 -0
  187. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/namespace/data.py +0 -0
  188. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/native.c +0 -0
  189. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/package/__init__.py +0 -0
  190. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/module-types/pyproject.toml +0 -0
  191. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/pure/meson.build +0 -0
  192. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/pure/pure.py +0 -0
  193. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/pure/pyproject.toml +0 -0
  194. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-and-platlib/meson.build +0 -0
  195. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-and-platlib/plat.c +0 -0
  196. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-and-platlib/pure.py +0 -0
  197. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-and-platlib/pyproject.toml +0 -0
  198. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-platlib-split/meson.build +0 -0
  199. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-platlib-split/plat.py +0 -0
  200. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-platlib-split/pure.py +0 -0
  201. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/purelib-platlib-split/pyproject.toml +0 -0
  202. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/meson.build +0 -0
  203. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/__init__.py +0 -0
  204. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/cy_extmod.pyx +0 -0
  205. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/extmod.c +0 -0
  206. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/meson.build +0 -0
  207. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/submod/__init__.py +0 -0
  208. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/mypkg/submod/unknown_filetype.npq +0 -0
  209. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/pyproject.toml +0 -0
  210. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/scipy-like/tools/generate_config.py +0 -0
  211. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/meson.build +0 -0
  212. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/__init__.py +0 -0
  213. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/_examplemod.c +0 -0
  214. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/examplelib.c +0 -0
  215. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/examplelib.h +0 -0
  216. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/meson.build +0 -0
  217. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/sub/examplelib2.c +0 -0
  218. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/sub/examplelib2.h +0 -0
  219. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/sub/meson.build +0 -0
  220. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/mypkg/sub/mypkg_dll.h +0 -0
  221. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/sharedlib-in-package/pyproject.toml +0 -0
  222. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/simple/__init__.py +0 -0
  223. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/simple/data.txt +0 -0
  224. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/simple/meson.build +0 -0
  225. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/simple/pyproject.toml +0 -0
  226. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/simple/test.py +0 -0
  227. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/meson.build +0 -0
  228. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/pyproject.toml +0 -0
  229. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/subdirs/__init__.py +0 -0
  230. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/subdirs/a/__init__.py +0 -0
  231. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/subdirs/a/b/c.py +0 -0
  232. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subdirs/subdirs/b/c.py +0 -0
  233. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/meson.build +0 -0
  234. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/pyproject.toml +0 -0
  235. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/subproject.py +0 -0
  236. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/subprojects/dep/data.txt +0 -0
  237. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/subprojects/dep/dep.py +0 -0
  238. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/subproject/subprojects/dep/meson.build +0 -0
  239. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/__init__.py +0 -0
  240. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/meson.build +0 -0
  241. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/pyproject.toml +0 -0
  242. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/submodule/__init__.py +0 -0
  243. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/submodule/aaa.py +0 -0
  244. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/symlinks/submodule/bbb.py +0 -0
  245. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/unknown-user-args-meson-args/pyproject.toml +0 -0
  246. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/unknown-user-args-top-level/pyproject.toml +0 -0
  247. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/unsupported-python-version/meson.build +0 -0
  248. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/unsupported-python-version/pyproject.toml +0 -0
  249. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/user-args/meson.build +0 -0
  250. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/user-args/pure.py +0 -0
  251. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/user-args/pyproject.toml +0 -0
  252. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/vendored-meson/meson.build +0 -0
  253. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/vendored-meson/meson_options.txt +0 -0
  254. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/vendored-meson/pyproject.toml +0 -0
  255. {meson_python-0.19.0 → meson_python-0.21.0}/tests/packages/vendored-meson/third-party/meson.py +0 -0
  256. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_metadata.py +0 -0
  257. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_options.py +0 -0
  258. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_output.py +0 -0
  259. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_pep517.py +0 -0
  260. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_sdist.py +0 -0
  261. {meson_python-0.19.0 → meson_python-0.21.0}/tests/test_wheelfile.py +0 -0
@@ -21,20 +21,23 @@ on:
21
21
  - CHANGELOG.rst
22
22
  - README.md
23
23
 
24
+ permissions: {}
25
+
24
26
  jobs:
25
27
 
26
28
  build:
27
29
  runs-on: ubuntu-latest
28
30
  steps:
29
- - uses: actions/setup-python@v5
31
+ - uses: actions/setup-python@v7
30
32
  with:
31
33
  python-version: '3.11'
32
- - uses: actions/checkout@v4
34
+ - uses: actions/checkout@v7
33
35
  with:
34
36
  ref: ${{ github.event.inputs.tag || github.ref }}
37
+ persist-credentials: false
35
38
  - run: python -m pip install --group docs
36
39
  - run: python -m sphinx -W docs/ build/docs/
37
- - uses: actions/upload-pages-artifact@v3
40
+ - uses: actions/upload-pages-artifact@v5
38
41
  with:
39
42
  path: build/docs/
40
43
 
@@ -48,4 +51,4 @@ jobs:
48
51
  runs-on: ubuntu-latest
49
52
  if: ${{ github.ref == 'refs/heads/main' }}
50
53
  steps:
51
- - uses: actions/deploy-pages@v4
54
+ - uses: actions/deploy-pages@v5