Skip to content

Commit

Permalink
meson: switch from .egg-info to .dist-info
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Sep 6, 2024
1 parent 5cfaf87 commit c4425f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ pyext_c_args = [
if not for_wheel
pkginfo_conf = configuration_data()
pkginfo_conf.set('VERSION', pycairo_version)
configure_file(input : 'PKG-INFO.in',
output : 'pycairo-@[email protected]'.format(pycairo_version),
configure_file(input : 'METADATA.in',
output : 'METADATA',
configuration : pkginfo_conf,
install_dir : python.get_install_dir())
install_dir : python.get_install_dir() / 'pycairo-@[email protected]'.format(pycairo_version))
endif

subdir('cairo')
Expand Down

0 comments on commit c4425f0

Please sign in to comment.