Skip to content

Commit 1628020

Browse files
committed
Exclude gallery files that start with NX_
1 parent 0f7a205 commit 1628020

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docs/sphinx/source/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
# import distutils before calling pd.show_versions()
2424
# https://github.com/pypa/setuptools/issues/3044
25-
import distutils # noqa: F401
2625
import pandas as pd
2726

2827
pd.show_versions()
@@ -389,7 +388,7 @@ def setup(app):
389388
'examples_dirs': ['../../examples'], # location of gallery scripts
390389
'gallery_dirs': ['gallery'], # location of generated output
391390
# execute only files starting with plot_
392-
'filename_pattern': 'plot_',
391+
'filename_pattern': r"^(?!NX_).*$",
393392

394393
# directory where function/class granular galleries are stored
395394
'backreferences_dir': 'reference/generated/gallery_backreferences',

0 commit comments

Comments
 (0)