Skip to content
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

Refactor develop command to act identical to PEP 660 editable wheels #653

Merged
merged 1 commit into from
Oct 15, 2021
Merged
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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Add support for PEP 660 editable installs in [#648](https://github.com/PyO3/maturin/pull/648)
* Publish musllinux_1_1 wheels for maturin in [#651](https://github.com/PyO3/maturin/pull/651)
* Refactor `develop` command to act identical to PEP 660 editable wheels in [#653](https://github.com/PyO3/maturin/pull/653)

## [0.11.5] - 2021-10-13

Expand Down
3 changes: 0 additions & 3 deletions src/build_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ impl BuildContext {
artifact,
None,
&self.target,
false,
self.editable,
)
.context("Failed to add the files to the wheel")?;
Expand Down Expand Up @@ -330,7 +329,6 @@ impl BuildContext {
artifact,
Some(python_interpreter),
&self.target,
false,
self.editable,
)
.context("Failed to add the files to the wheel")?;
Expand Down Expand Up @@ -422,7 +420,6 @@ impl BuildContext {
&self.module_name,
artifact,
&self.interpreter[0].executable,
false,
self.editable,
)?;

Expand Down
Loading