File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ version: 2
99build :
1010 os : ubuntu-20.04
1111 tools :
12- python : " 3.8 "
12+ python : " 3.9 "
1313 apt_packages :
1414 - libopenblas-dev
1515
Original file line number Diff line number Diff line change 4040
4141docupdate :
4242 cd docs && make html && cd ..
43+
44+ servedoc :
45+ $(PYTHON ) -m http.server --directory docs/build/html/
46+
47+ lint :
48+ flake8 docs/ examples/ pyproximal/ pytests/ tutorials/
49+
50+ typeannot :
51+ mypy pyproximal/
Original file line number Diff line number Diff line change 9898.. |year| replace:: {year}
9999""" .format (year = year )
100100
101+ html_static_path = ["_static" ]
101102html_last_updated_fmt = '%b %d, %Y'
102103html_title = 'PyProximal'
103104html_short_title = 'PyProximal'
104- html_logo = '_static/pyproximal.png'
105- html_favicon = '_static/favicon.ico'
106- html_static_path = ['_static' ]
105+ html_logo = 'pyproximal.png'
106+ html_favicon = 'favicon.ico'
107107html_extra_path = []
108108pygments_style = 'default'
109109add_function_parentheses = False
112112html_show_copyright = True
113113
114114# Theme config
115- html_theme = "sphinx_rtd_theme "
115+ html_theme = "pydata_sphinx_theme "
116116html_theme_options = {
117117 'logo_only' : True ,
118118 'display_version' : True ,
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ docutils<0.18
1313Sphinx == 4.2.0
1414sphinx-rtd-theme
1515sphinx-gallery
16+ pydata-sphinx-theme
1617numpydoc
1718nbsphinx
1819image
You can’t perform that action at this time.
0 commit comments