Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-8340: [Documentation] Remove the old Sphinx pin #11878

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Expand Up @@ -28,6 +28,7 @@
!ci/**
!c_glib/Gemfile
!dev/archery/setup.py
!docs/requirements*.txt
!python/requirements*.txt
!python/manylinux1/**
!python/manylinux2010/**
Expand Down
9 changes: 2 additions & 7 deletions ci/docker/linux-apt-docs.dockerfile
Expand Up @@ -74,13 +74,8 @@ RUN wget -q -O - https://deb.nodesource.com/setup_${node}.x | bash - && \
rm -rf /var/lib/apt/lists/* && \
npm install -g yarn

AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
RUN pip install \
breathe \
ipython \
meson \
pydata-sphinx-theme \
sphinx-tabs \
sphinx>=4.2
COPY docs/requirements.txt /arrow/docs/
RUN pip install -r arrow/docs/requirements.txt meson

COPY c_glib/Gemfile /arrow/c_glib/
RUN gem install --no-document bundler && \
Expand Down
6 changes: 5 additions & 1 deletion docs/requirements.txt
@@ -1,6 +1,10 @@
#
# Note: keep this file in sync with conda_env_sphinx.txt !
#

breathe
ipython
numpydoc
sphinx==2.4.4
pydata-sphinx-theme
sphinx-tabs
sphinx>=4.2
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved