Skip to content

Pre-release: extract metadata generation logic and decouple from wheel 0.30.0 #521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 18 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.2.3b1
+++++++
Copy link
Member Author

@wangzelin007 wangzelin007 Apr 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Section title underlines should be at least as long as the text of the section title
image

* extract metadata generation logic and decouple from wheel 0.30.0

0.2.2
++++++
* Update dependency `azure-cli-diff-tool` to `0.1.0`.
Expand All @@ -11,7 +15,7 @@ Release History
* `azdev extension cal-next-version`: Adjust `minor` or `patch` update for previous preview versioning pattern.

0.2.0
+++++
++++++
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as above

* `azdev generated-breaking-change-report`: Support multi-line upcoming breaking change announcement

0.1.99
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.2.2'
__VERSION__ = '0.2.3b1'
5 changes: 4 additions & 1 deletion azdev/operations/code_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,9 @@ def _create_package(prefix, repo_path, is_ext, name='test', display_name=None, d
_generate_files(env, kwargs, test_files, dest_path)

if is_ext:
result = pip_cmd('install -e {}'.format(new_package_path), "Installing `{}{}`...".format(prefix, name))
result = pip_cmd(
f'install -e {new_package_path} --config-settings editable_mode=compat',
f"Installing `{prefix}{name}`..."
)
if result.error:
raise result.error # pylint: disable=raising-bad-type
5 changes: 4 additions & 1 deletion azdev/operations/extensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ def add_extension(extensions):
raise CLIError('extension(s) not found: {}'.format(' '.join(extensions)))

for path in paths_to_add:
result = pip_cmd('install -e {}'.format(path), "Adding extension '{}'...".format(path))
result = pip_cmd(
f'install -e {path} --config-settings editable_mode=compat --no-build-isolation',
f"Adding extension '{path}'..."
)
if result.error:
raise result.error # pylint: disable=raising-bad-type

Expand Down
Loading