-
Notifications
You must be signed in to change notification settings - Fork 792
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
Merge master into the abi3 branch to resolve conflicts #1220
Merged
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
Fix cargo test with Anaconda python, and divergent gcc versions.
Release 0.12
…on 64-bit windows
Fix date in changelog
Don't consider it cross-compilation when building for 32-bit Windows on 64-bit windows
* Fix compilation on platforms that don't use i8 for c_char This commit changes the cast of an c_char to be a c_char type instead of i8. On x86 platforms i8 == c_char, but it can also be u8 on other platforms. [1][2] This should fix compilation on those platforms by just using the c_char type so that we're casting as the right type regardless of which platform PyO3 is being built for. Fixes PyO3#1181 [1] https://doc.rust-lang.org/std/os/raw/type.c_char.html [2] https://github.com/rust-lang/rust/blob/master/library/std/src/os/raw/mod.rs#L55-L99 * Add changelog entry
Looks like this just got out of date at some point.
Fix link in changelog
Update Wasmer Python extension link
fixed markdown syntax
Fix doc redirect on release
Sorry for the noise, there were some errors in PyO3#1197 which github did not show until after I merged 😞
Fix doc update on release
Release 0.12.1
Tidy up guide release
Add documentation for raw_pycfuntion
Updates the requirements on [paste](https://github.com/dtolnay/paste) to permit the latest version. - [Release notes](https://github.com/dtolnay/paste/releases) - [Commits](dtolnay/paste@0.1.6...1.0.1) Signed-off-by: dependabot[bot] <[email protected]>
Update paste requirement from 0.1.6 to 1.0.1
* allow keyword arguments without default value * allow keyword-only arguments
Add CHANGELOG entry for PyO3#1209.
Exclude PyPy CI for windows
This is a useful API in long-running Rust code, which lets users cancel evaluation by pressing Ctrl-C, and run any other signal handlers that have been set using the signal module.
Add wrapper for PyErr_CheckSignals() to Python.
Add null-check for function's documents
kngwyu
approved these changes
Oct 10, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
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.
No description provided.