Skip to content

Commit 982c4a7

Browse files
authored
[MRG] Proper subsections in gallery (#395)
* add option for preper subsections * cleanup dodecov ignore * cleanup dodecov ignore
1 parent a24ec25 commit 982c4a7

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

RELEASES.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
#### Closed issues
1111

12+
13+
- Fixed an issue with the documentation gallery sections (PR #395)
1214
- Fixed an issue where sinkhorn divergence did not have a gradients (Issue #393, PR #394)
1315
- Fixed an issue where we could not ask TorchBackend to place a random tensor on GPU
1416
(Issue #371, PR #373)

codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ parsers:
3838

3939
# https://docs.codecov.io/docs/ignoring-paths
4040
ignore:
41-
- "ot/gpu/*"
41+
- "ot/helpers/openmp_helpers.py"
4242

4343
# https://docs.codecov.io/docs/pull-request-comments
4444
comment:

docs/source/conf.py

+2
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ def __getattr__(cls, name):
194194
# relative to this directory. They are copied after the builtin static files,
195195
# so a file named "default.css" will overwrite the builtin "default.css".
196196
html_static_path = ['_static']
197+
#html_css_files = ["css/custom.css"]
197198

198199

199200
# Add any extra paths that contain custom files (such as robots.txt or
@@ -351,6 +352,7 @@ def __getattr__(cls, name):
351352
sphinx_gallery_conf = {
352353
'examples_dirs': ['../../examples', '../../examples/da'],
353354
'gallery_dirs': 'auto_examples',
355+
'nested_sections' : False,
354356
'backreferences_dir': 'gen_modules/backreferences',
355357
'inspect_global_variables' : True,
356358
'doc_module' : ('ot','numpy','scipy','pylab'),

0 commit comments

Comments
 (0)