File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ INPUT = ../include/xsimd/types/xsimd_api.hpp \
66 ../include/xsimd/config/xsimd_config.hpp \
77 ../include/xsimd/memory/xsimd_alignment.hpp \
88 ../include/xsimd/memory/xsimd_aligned_allocator.hpp \
9- \
109 ../include/xsimd/types/xsimd_generic_arch.hpp \
1110 ../include/xsimd/types/xsimd_avx2_register.hpp \
1211 ../include/xsimd/types/xsimd_avx512bw_register.hpp \
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ channels:
44 - conda-forge
55
66dependencies :
7- - breathe==4.25.1
8- - doxygen==1.9.1
7+ - breathe
8+ # - docutils<0.17
Original file line number Diff line number Diff line change 44import os
55import subprocess
66
7+ on_rtd = os .environ .get ('READTHEDOCS' , None ) == 'True'
8+
9+ if on_rtd :
10+ subprocess .call ('cd ..; doxygen' , shell = True )
11+
712import sphinx_rtd_theme
813
914html_theme = "sphinx_rtd_theme"
10-
1115html_theme_path = [sphinx_rtd_theme .get_html_theme_path ()]
1216
17+ def setup (app ):
18+ app .add_css_file ("main_stylesheet.css" )
19+
1320extensions = ['breathe' ]
1421breathe_projects = { 'xsimd' : '../xml' }
1522templates_path = ['_templates' ]
You can’t perform that action at this time.
0 commit comments