Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -17,6 +17,7 @@

# Requirements for building the documentation
breathe
cython>3.1.1
Comment thread
raulcd marked this conversation as resolved.
doxygen
ipython
linkify-it-py
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