Fix the documentation build step of the CI
This commit is contained in:
parent
6ea15c30b8
commit
fedf9b492b
|
@ -42,8 +42,9 @@ jobs:
|
||||||
uses: ammaraskar/sphinx-action@master
|
uses: ammaraskar/sphinx-action@master
|
||||||
with:
|
with:
|
||||||
pre-build-command: |
|
pre-build-command: |
|
||||||
|
apt-get update -y && apt-get install -y git
|
||||||
python -m pip install --upgrade pip setuptools wheel
|
python -m pip install --upgrade pip setuptools wheel
|
||||||
python -m pip install -e .[docs]
|
python -m pip install -e .[composable,docs]
|
||||||
docs-folder: "docs/"
|
docs-folder: "docs/"
|
||||||
- name: Publish documentation
|
- name: Publish documentation
|
||||||
run: |
|
run: |
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -127,7 +127,7 @@ setup(
|
||||||
'bayes': ['jax', 'jaxlib', 'numpyro'],
|
'bayes': ['jax', 'jaxlib', 'numpyro'],
|
||||||
'composable': ['qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.3'],
|
'composable': ['qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.3'],
|
||||||
'tests': ['certifi'],
|
'tests': ['certifi'],
|
||||||
'docs' : ['sphinx-rtd-theme', 'myst-parser', 'qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.3'],
|
'docs' : ['sphinx-rtd-theme', 'myst-parser'],
|
||||||
},
|
},
|
||||||
|
|
||||||
# If there are data files included in your packages that need to be
|
# If there are data files included in your packages that need to be
|
||||||
|
|
Loading…
Reference in New Issue