We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776ea02 commit c037c78Copy full SHA for c037c78
README.md
@@ -26,6 +26,23 @@ https://github.com/PyO3/pyo3/blob/master/build.rs for minimum required version)
26
Starting from 0.3, rust-numpy migrated from rust-cpython to pyo3.
27
If you want to use rust-cpython, use version 0.2.1 from crates.io.
28
29
+Supported python version
30
+-------------
31
+Currently 2.7, 3.5, 3.6, 3.7 are supported.
32
+
33
+By default, python version is automatically by execute `python`.
34
35
+If you need to use python version, please add a feature flag like
36
37
+``` toml
38
+[dependencies.numpy]
39
+version = "0.4.0-alpha.1"
40
+features = ["python3"]
41
+```
42
+.
43
44
+You can also specify version in [setup.py](examples/simple-extension/setup.py)
45
46
47
Example
48
---------
0 commit comments