add missing sphinx_design and pydata-sphinx-theme to docs extra
Same fix as master (63075e4): conf.py uses pydata_sphinx_theme and
sphinx_design, but the docs extra never listed them, so pip install
.[docs] couldn't build the docs.
This commit is contained in:
parent
ee803a339b
commit
03163f38cf
2
setup.py
2
setup.py
|
|
@ -133,7 +133,7 @@ setup(
|
|||
'bayes': ['jax', 'jaxlib', 'numpyro', 'pystan', 'setuptools<82'],
|
||||
'neural': ['torch'],
|
||||
'tests': ['certifi'],
|
||||
'docs' : ['sphinx-rtd-theme', 'myst-parser'],
|
||||
'docs' : ['pydata-sphinx-theme', 'myst-parser', 'sphinx-design'],
|
||||
},
|
||||
|
||||
# If there are data files included in your packages that need to be
|
||||
|
|
|
|||
Loading…
Reference in New Issue