Skip to content

Commit 17d50c6

Browse files
Merge remote-tracking branch 'upstream/master' into prev_next
2 parents d0ee2ec + c8b8501 commit 17d50c6

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on: [status]
2+
jobs:
3+
circleci_artifacts_redirector_job:
4+
runs-on: ubuntu-latest
5+
name: Run CircleCI artifacts redirector
6+
steps:
7+
- name: GitHub Action step
8+
uses: larsoner/circleci-artifacts-redirector-action@master
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
artifact-path: 0/html/index.html

pandas-docs/source/getting_started/overview.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:notoc:
2+
13
.. _overview:
24

35
{{ header }}

pandas-docs/source/index.rst.template

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
:notoc:
2+
13
.. pandas documentation master file, created by
24

35
.. module:: pandas

pandas_sphinx_theme/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</div>
5151

5252
<div class="d-none d-xl-block col-xl-2 bd-toc">
53-
{% if not pagename.endswith('index') and not '/api/' in pagename %}
53+
{% if not (meta is not none and 'notoc' in meta) %}
5454
{%- include "docs-toc.html" %}
5555
{% endif %}
5656
</div>

0 commit comments

Comments
 (0)