8000 BF: DOCS: fix slash for windows in conf.py by brunobeltran · Pull Request #19418 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

BF: DOCS: fix slash for windows in conf.py #19418

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

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# serve to show the default value.

import os
from pathlib import Path
import shutil
import subprocess
import sys
7540 Expand Down Expand Up @@ -158,7 +159,7 @@ def _check_dependencies():
'numpy': 'https://docs.scipy.org/doc/numpy/',
'scipy': 'https://docs.scipy.org/doc/scipy/reference/',
},
'backreferences_dir': 'api/_as_gen',
'backreferences_dir': Path('api') / Path('_as_gen'),
'subsection_order': gallery_order.sectionorder,
'within_subsection_order': gallery_order.subsectionorder,
'remove_config_comments': True,
Expand Down
0