forked from PyO3/maturin
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Optional email #2
Open
evandrocoan
wants to merge
49
commits into
master
Choose a base branch
from
optional_email
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
32 bit Python modules use i386, not x86
With pyo3 requiring python3 this can no longer be valid.
Fix non-interpreter-specific wheels using tag with py2
This path began appearing in the output of cargo package --list --allow-dirty --manifest-path=Cargo.toml around nightly-2020-02-22. It doesn't exist prior to the call and isn't created by it. This causes: 💥 maturin failed Caused by: Failed to build source distribution Caused by: Failed to add file from Cargo.toml.orig to sdist as Cargo.toml.orig Caused by: No such file or directory (os error 2) when getting metadata for Cargo.toml.orig
The architecture, wheel names, and shared object names match what is specified in CPython and pip. arm7l and aarch64 are supported for Linux only. Target::from_target_triple() returns an Err on an unsupported OS and architecture combination. This allows building arm7l and aarch64 on manylinux1 and manylinux2010, which should not work in pip. Target::from_target_triple() could be expanded to error on this but that needs more refactoring than seems appropriate here.
Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.10.1 to 0.10.3. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.10.1...v0.10.3) Signed-off-by: dependabot-preview[bot] <[email protected]>
Bump reqwest from 0.10.1 to 0.10.3
Support arm7l, aarch64 architectures and manylinux2014 tag
Filter Cargo.toml.orig from sdist
Fix aarch64 EXT_SUFFIX
Switch to virtualenv
Better error for simultaneous virtualenv and conda
Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/marshallpierce/rust-base64/releases) - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](marshallpierce/rust-base64@v0.11.0...v0.12.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Bump base64 from 0.11.0 to 0.12.0
Fixes deploying to PyPI when an email address is not provided.
Merging it now would be just to keep your master up to date, as this repository usage was deprecated on: ankitects/anki#538 - Deprecated maturin alternative version fix as version 0.80.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Instead of merging #1 - Omit author_email if @ not found in authors, it should be better merge this because it has the latest version from
maturin 0.80.0
.