Skip to content

Commit

Permalink
0.0.24: revert normalize project name
Browse files Browse the repository at this point in the history
  • Loading branch information
rjdbcm committed Jun 16, 2024
1 parent 4a280bd commit ede285c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.23', license : 'apache-2.0')
project('OZI.build', version : '0.0.24', license : 'apache-2.0')
fs = import('fs')
python = import('python').find_installation()
subdir('ozi_build')
Expand Down
4 changes: 2 additions & 2 deletions 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'].replace('-', '_', 1).replace('-', '_'), config['version']),
'{}-{}.dist-info'.format(config['module'], config['version']),
)
dist_info.mkdir(exist_ok=True)

Expand Down Expand Up @@ -395,7 +395,7 @@ def build(self, wheel_directory, config_settings, metadata_dir):
abi = config.get('requires-python', get_abi(python))

target_fp = wheel_directory / '{}-{}-{}-{}.whl'.format(
config['module'].replace('-', '_', 1).replace('-', '_'),
config['module'],
config['version'],
abi,
platform_tag,
Expand Down

0 comments on commit ede285c

Please sign in to comment.