messense
messense
Looks like https://pyo3.rs/main/ somehow does not include #2499 , not sure what's going on, build the guide locally does include it. If we going to use netlify, we can apply...
> test marker::tests::test_acquire_gil ... FAILED https://github.com/PyO3/pyo3/blob/b8dd626194cc97ad878adc7b45d6098e760ac05a/src/marker.rs#L993-L1010 This one seems problematic with cargo-nextest. https://nexte.st/book/how-it-works.html
> Last time I checked, nextest did not support and run doctests. So you'd have to add "cargo test --doc" as a separate step? In that case I think we...
Linking some related PEPs here: * [PEP 489 – Multi-phase extension module initialization](https://peps.python.org/pep-0489/) * [PEP 573 – Module State Access from C Extension Methods](https://peps.python.org/pep-0573/) * [PEP 630 – Isolating Extension...
What we want in pyca/cryptography#6695 are: 1. A way to get the currently detected Python interpreter for running a Python script file and determining the interpreter kind for example disable...
We are actively testing Python 3.11 development versions on CI so I think it should be ready. https://github.com/PyO3/pyo3/blob/f84c740e414f712348629f8845f52a254c7d55e5/.github/workflows/ci.yml#L93
> Is there a way to tell cargo test to run the test via node test.js rather than via ./test.js? Custom cargo runner should do: https://doc.rust-lang.org/cargo/reference/config.html#targettriplerunner
I'm also interested in adding wasm python extension module build support to [maturin](https://github.com/PyO3/maturin/issues/904) and setuptools-rust, I'd love to learn more about how to implement it, for example how to build...
@samuelcolvin Emscripten support was added to maturin in https://github.com/PyO3/maturin/pull/974 which was released in `v0.13.0-beta.7`, you can install it from PyPI using `pip install -U --pre maturin`. To build a wheel,...
I was thinking that you can generate the cffi C source code in `build_openssl.py` then compile and link it in Rust side using a `build.rs` build script. ```diff diff --git...