Skip to content

Commit

Permalink
0.0.23: normalize project name for dist-info
Browse files Browse the repository at this point in the history
  • Loading branch information
rjdbcm committed Jun 16, 2024
1 parent a47d8dd commit 4a280bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('OZI.build', version : '0.0.22', license : 'apache-2.0')
project('OZI.build', version : '0.0.23', license : 'apache-2.0')
fs = import('fs')
python = import('python').find_installation()
subdir('ozi_build')
Expand Down
2 changes: 1 addition & 1 deletion ozi_build/buildapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def prepare_metadata_for_build_wheel(

dist_info = Path(
metadata_directory,
'{}-{}.dist-info'.format(config['module'], config['version']),
'{}-{}.dist-info'.format(config['module'].replace('-', '_', 1).replace('-', '_'), config['version']),
)
dist_info.mkdir(exist_ok=True)

Expand Down

0 comments on commit 4a280bd

Please sign in to comment.