guide: add link to pypy chapter

Instead of referring to the guide.
This commit is contained in:
Riccardo Magliocchetti 2019-10-06 21:22:53 +02:00 committed by GitHub
parent 75516d87eb
commit 27105c9414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ A comparison with rust-cpython can be found [in the guide](https://pyo3.rs/maste
PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-19. PyO3 supports Python 3.5 and up. The minimum required Rust version is 1.37.0-nightly 2019-07-19.
PyPy is also supported (via cpyext) for Python 3.5 only, targeted PyPy version is 7.0.0. PyPy is also supported (via cpyext) for Python 3.5 only, targeted PyPy version is 7.0.0.
Please refer to the guide for installation instruction against PyPy. Please refer to the [pypy section](https://pyo3.rs/master/pypy.html).
You can either write a native Python module in Rust, or use Python from a Rust binary. You can either write a native Python module in Rust, or use Python from a Rust binary.