Skip to content

Commit adf37f6

Browse files
Merge branch 'main' into enh/save_movie
2 parents 4344e3c + 5ae29cd commit adf37f6

21 files changed

+848
-503
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
- run:
204204
name: make html
205205
command: |
206-
PATTERN=$(cat ../pattern.txt) make -C doc $(cat ../build.txt);
206+
PATTERN=$(cat pattern.txt) make -C doc $(cat build.txt);
207207
- run:
208208
name: Show profiling output
209209
when: always

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ recursive-include mne mne/datasets *.csv
3636
include mne/io/edf/gdf_encodes.txt
3737
include mne/datasets/sleep_physionet/SHA1SUMS
3838
include mne/externals/tqdm/_tqdm/tqdm.1
39-
include mne/viz/_brain/tests/test.ipynb
4039

4140
### Exclude
4241

doc/_static/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ iframe.sg_report {
5757
}
5858

5959
/* ******************************** make HTML'd pandas dataframes scrollable */
60-
output_html {
60+
table.dataframe {
61+
display: block;
6162
overflow: auto;
6263
}
6364

doc/_templates/layout.html

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
{%- extends "pydata_sphinx_theme/layout.html" %}
22

3-
{% block fonts %}
4-
<!-- add `style` or `link` tags with your CSS `@font-face` declarations here -->
5-
<!-- ... and a `style` tag with setting `font-family` in `body` and `.header-style` -->
6-
<!-- ... and optionally preload the `woff2` for snappier page loads -->
7-
<!-- or add a `style` tag with a font fallback chain with good cross-platform coverage -->
8-
<style>
9-
body,.header-style {font-family: 'Source Sans Pro', sans-serif;}
10-
code,kbd,pre,samp {font-family: 'Source Code Pro', monospace;}
11-
</style>
12-
{% endblock %}
13-
143
{% block extrahead %}
154
<link rel="canonical" href="https://mne.tools/stable/index.html" />
165
<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>
17-
<script type="text/javascript" src="{{ pathto('_static/scrollfix.js', 1) }}"></script>
186
{{ super() }}
197
{% endblock %}
208

0 commit comments

Comments
 (0)