Skip to content

Commit

Permalink
Refactor develop command to act identical to PEP 660 editable wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 15, 2021
1 parent bd1c476 commit 93f81f7
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 304 deletions.
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

0 comments on commit 93f81f7

Please sign in to comment.