Skip to content

Commit

Permalink
Merge pull request #762 from rgommers/fix-install-tags
Browse files Browse the repository at this point in the history
BLD: fix a few install tags for generated .py files
  • Loading branch information
rgommers authored Jul 27, 2024
2 parents 9d8afd4 + 4356fe0 commit 6dbf33d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pywt/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ generate_version = custom_target(
input: '../util/version_utils.py',
command: [py, '@INPUT@', '--source-root', '@SOURCE_ROOT@'],
install_dir: py.get_install_dir() / 'pywt',
install_tag: 'python-runtime',
)

cc = meson.get_compiler('c')
Expand All @@ -51,7 +52,8 @@ _c99_config = configure_file(
output: '_c99_config.py',
configuration: cdata,
install: true,
install_dir: py.get_install_dir() / 'pywt'
install_dir: py.get_install_dir() / 'pywt',
install_tag: 'python-runtime',
)

install_subdir('data', install_dir: py.get_install_dir() / 'pywt')
Expand Down

0 comments on commit 6dbf33d

Please sign in to comment.