Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/conda_env_sphinx.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# Requirements for building the documentation
breathe
doxygen
cython>3.1.1
Comment thread
raulcd marked this conversation as resolved.
Comment thread
raulcd marked this conversation as resolved.
ipython
linkify-it-py
# We can't install linuxdoc by conda. We install linuxdoc by pip in
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#

breathe
cython>3.1.1
ipython
linuxdoc
myst-parser[linkify]
Expand Down
2 changes: 1 addition & 1 deletion python/pyarrow/types.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -4464,7 +4464,7 @@ def float16():
to a python list, the types of its elements will be ``np.float16``

>>> [type(val) for val in a.to_pylist()]
[<class 'numpy.float16'>, <class 'numpy.float16'>]
[<class 'float'>, <class 'float'>]
"""
return primitive_type(_Type_HALF_FLOAT)

Expand Down
Loading