Skip to content

Commit c6ab286

Browse files
apacheGH-39640: [Docs] Pin pydata-sphinx-theme to 0.14.* (apache#39758)
### Rationale for this change Fixing the pinning syntax so we get the latest 0.14.x version (which is currently 0.14.4) * Closes: apache#39640 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
1 parent b778ace commit c6ab286

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

ci/conda_env_sphinx.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ breathe
2020
doxygen
2121
ipython
2222
numpydoc
23-
pydata-sphinx-theme=0.14.1
23+
pydata-sphinx-theme=0.14
2424
sphinx-autobuild
2525
sphinx-design
2626
sphinx-copybutton

docs/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
breathe
66
ipython
77
numpydoc
8-
pydata-sphinx-theme==0.14.1
8+
pydata-sphinx-theme~=0.14
99
sphinx-autobuild
1010
sphinx-design
1111
sphinx-copybutton

docs/source/python/api/compute.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -590,4 +590,4 @@ User-Defined Functions
590590
:toctree: ../generated/
591591

592592
register_scalar_function
593-
ScalarUdfContext
593+
UdfContext

docs/source/python/compute.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,9 +445,9 @@ output type need to be defined. Using :func:`pyarrow.compute.register_scalar_fun
445445
446446
The implementation of a user-defined function always takes a first *context*
447447
parameter (named ``ctx`` in the example above) which is an instance of
448-
:class:`pyarrow.compute.ScalarUdfContext`.
448+
:class:`pyarrow.compute.UdfContext`.
449449
This context exposes several useful attributes, particularly a
450-
:attr:`~pyarrow.compute.ScalarUdfContext.memory_pool` to be used for
450+
:attr:`~pyarrow.compute.UdfContext.memory_pool` to be used for
451451
allocations in the context of the user-defined function.
452452

453453
You can call a user-defined function directly using :func:`pyarrow.compute.call_function`:

docs/source/python/pandas.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ use the ``datetime64[ns]`` type in Pandas and are converted to an Arrow
197197

198198
.. ipython:: python
199199
200-
df = pd.DataFrame({"datetime": pd.date_range("2020-01-01T00:00:00Z", freq="H", periods=3)})
200+
df = pd.DataFrame({"datetime": pd.date_range("2020-01-01T00:00:00Z", freq="h", periods=3)})
201201
df.dtypes
202202
df
203203

0 commit comments

Comments
 (0)