We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0fe7a commit 6467d9fCopy full SHA for 6467d9f
tests/packages/subproject/pyproject.toml
@@ -8,10 +8,7 @@ requires = ['meson-python']
8
9
[tool.meson-python.wheel]
10
exclude = [
11
- # Meson before version 1.3.0 install data files in
12
- # ``{datadir}/{project name}/``, later versions install
13
- # in the more correct ``{datadir}/{subproject name}/``.
14
- '{datadir}/*/data.txt',
+ '{datadir}/sub/*.txt',
15
'{py_purelib}/dep.*',
16
]
17
include = [
tests/packages/subproject/subprojects/dep/meson.build
@@ -8,4 +8,4 @@ py = import('python').find_installation()
py.install_sources('dep.py')
-install_data('data.txt')
+install_data('data.txt', install_dir: 'dep')
0 commit comments