diff options
author | zoj <44142765+zoj613@users.noreply.github.com> | 2021-05-17 17:22:54 +0200 |
---|---|---|
committer | zoj <44142765+zoj613@users.noreply.github.com> | 2021-05-17 17:22:54 +0200 |
commit | 72cc4dbf336dd5d1db11821110279f5ff8e320a8 (patch) | |
tree | 0c71660ce5a2f3aa84a91d3e6698a63abe69cd6d /doc/source | |
parent | 99bb6a48ced27e5ce7bbf1fc7b606c5bd840af3a (diff) | |
download | numpy-72cc4dbf336dd5d1db11821110279f5ff8e320a8.tar.gz |
DOC: Clarify minimum numpy version needed to use random c-api
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/random/c-api.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/random/c-api.rst b/doc/source/reference/random/c-api.rst index 7c7996115..15a8947eb 100644 --- a/doc/source/reference/random/c-api.rst +++ b/doc/source/reference/random/c-api.rst @@ -3,7 +3,7 @@ C API for random .. currentmodule:: numpy.random -Access to various distributions below is available via Cython or C-wrapper +Since version ``1.19.0``, access to various distributions below is available via Cython or C-wrapper libraries like CFFI. All the functions accept a :c:type:`bitgen_t` as their first argument. To access these from Cython or C, you must link with the ``npyrandom`` library which is part of the NumPy distribution, located in |