-
-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update user guide for the upcoming 0.13 release
- Loading branch information
Showing
5 changed files
with
194 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Migrating from older maturin versions | ||
|
||
This guide can help you upgrade code through breaking changes from one maturin version to the next. | ||
For a detailed list of all changes, see the [CHANGELOG](changelog.md). | ||
|
||
## From 0.12.* to 0.13 | ||
|
||
### Drop support for Python 3.6 | ||
|
||
maturin 0.13 has dropped support for Python 3.6, to support Python 3.6 you can use the old 0.12 versions. | ||
|
||
### Source distributions are not built by default | ||
|
||
maturin 0.13 replaced `--no-sdist` with the new `--sdist` option, source distributions are now only built | ||
when `--sdist` is specified. | ||
|
||
### Only build wheels for current Python interpreter in `PATH` by default | ||
|
||
maturin 0.13 no longer searches for Python interpreters by default and only build wheels for the current | ||
Python interpreter (i.e. `python3`) in `PATH`. | ||
|
||
To enable the old behavior, use the new `--find-interpreter` option. |